From d0c7056b927547d77753dea81d932ae5f2d9c193 Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Thu, 16 Jun 2016 01:03:22 +0200 Subject: [PATCH 001/123] inline-c-cpp: fix build on darwin --- .../development/haskell-modules/configuration-common.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 5f1335ca72f..f31537970a1 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -225,6 +225,15 @@ self: super: { ''; })) pkgs.libcxx; + inline-c-cpp = if !pkgs.stdenv.isDarwin + then super.inline-c-cpp + else addExtraLibrary (overrideCabal super.inline-c-cpp (drv: + { + postPatch = '' + substituteInPlace inline-c-cpp.cabal --replace stdc++ c++ + ''; + })) pkgs.libcxx; + # tests don't compile for some odd reason jwt = dontCheck super.jwt; From f473721e41ecc28cac33d6f3bed77d05be0a9778 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 23 Jun 2016 20:47:22 +0200 Subject: [PATCH 002/123] pythonPackages.pytest_28: 2.8.6 -> 2.8.7 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a128d7d475e..ac9c07ddc20 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4426,11 +4426,11 @@ in modules // { }; pytest_28 = self.pytest_27.override rec { - name = "pytest-2.8.6"; + name = "pytest-2.8.7"; src = pkgs.fetchurl { url = "mirror://pypi/p/pytest/${name}.tar.gz"; - sha256 = "ed38a3725b8e4478555dfdb549a4219ca3ba57955751141a1aaa45b706d84194"; + sha256 = "1bwb06g64x2gky8x5hcrfpg6r351xwvafimnhm5qxq7wajz8ck7w"; }; }; From 9e041fd9befe5091e49269c387b18f079f1a08e1 Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Sat, 4 Jun 2016 13:55:15 -0400 Subject: [PATCH 003/123] secp256k1: init at 2016-05-30 --- pkgs/tools/security/secp256k1/default.nix | 35 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 37 insertions(+) create mode 100644 pkgs/tools/security/secp256k1/default.nix diff --git a/pkgs/tools/security/secp256k1/default.nix b/pkgs/tools/security/secp256k1/default.nix new file mode 100644 index 00000000000..f7a53469545 --- /dev/null +++ b/pkgs/tools/security/secp256k1/default.nix @@ -0,0 +1,35 @@ +{ stdenv, fetchFromGitHub, autoconf, automake, libtool, ... }: + +stdenv.mkDerivation rec { + name = "secp256k1-${version}"; + + # I can't find any version numbers, so we're just using the date + # of the last commit. + version = "2016-05-30"; + + src = fetchFromGitHub { + owner = "bitcoin-core"; + repo = "secp256k1"; + rev = "b3be8521e694eaf45dd29baea035055183c42fe2"; + sha256 = "1pgsy72w87yxbiqn96hnm8alsfx3rj7d9jlzdsypyf6i1rf6w4bq"; + }; + + buildInputs = [ autoconf automake libtool ]; + + configureFlags = [ "--enable-module-recovery" ]; + + preConfigure = "./autogen.sh"; + + meta = with stdenv.lib; { + description = "Optimized C library for EC operations on curve secp256k1"; + longDescription = '' + Optimized C library for EC operations on curve secp256k1. + Part of Bitcoin Core. This library is a work in progress + and is being used to research best practices. Use at your + own risk. + ''; + homepage = https://github.com/bitcoin-core/secp256k1; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ chris-martin ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dc47a12f10a..9f64e1167fc 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3289,6 +3289,8 @@ in seccure = callPackage ../tools/security/seccure { }; + secp256k1 = callPackage ../tools/security/secp256k1 { }; + securefs = callPackage ../tools/filesystems/securefs { }; setroot = callPackage ../tools/X11/setroot { }; From 9f7871070e28c63acb549ab953a70cab0cc95433 Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Sat, 4 Jun 2016 14:57:56 -0400 Subject: [PATCH 004/123] pythonPackages.secp256k1: init at 0.12.1 --- pkgs/top-level/python-packages.nix | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ac9c07ddc20..f533f4b53d3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -21328,6 +21328,40 @@ in modules // { }; }; + secp256k1 = buildPythonPackage rec { + name = "secp256k1-${version}"; + version = "0.12.1"; + + src = pkgs.fetchurl { + url = "mirror://pypi/s/secp256k1/${name}.tar.gz"; + sha256 = "0zrjxvzxqm4bz2jcy8sras8jircgbs6dkrw8j3nc6jhvzlikwwxl"; + }; + + buildInputs = [ pkgs.pkgconfig self.pytest_28 self.pytestrunner ]; + propagatedBuildInputs = [ self.cffi pkgs.secp256k1 ]; + + # Tests are not included in archive + doCheck = false; + + preConfigure = '' + cp -r ${pkgs.secp256k1.src} libsecp256k1 + touch libsecp256k1/autogen.sh + export INCLUDE_DIR=${pkgs.secp256k1}/include + export LIB_DIR=${pkgs.secp256k1}/lib + ''; + + checkPhase = '' + py.test tests + ''; + + meta = { + homepage = https://github.com/ludbb/secp256k1-py; + description = "Python FFI bindings for secp256k1"; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ chris-martin ]; + }; + }; + semantic-version = buildPythonPackage rec { name = "semantic_version-2.4.2"; src = pkgs.fetchurl { From 8745e479091f21975d5777df9a8013d8e7d02cfd Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Sat, 9 Jul 2016 05:13:52 +0200 Subject: [PATCH 005/123] mutt: 1.6.0 -> 1.6.2 --- .../networking/mailreaders/mutt/default.nix | 86 +- .../mailreaders/mutt/sidebar-compose.patch | 40 - .../mutt/sidebar-delimnullwide.patch | 38 - .../mailreaders/mutt/sidebar-dotpathsep.patch | 98 - .../mailreaders/mutt/sidebar-new.patch | 97 - .../mailreaders/mutt/sidebar-newonly.patch | 198 - .../mailreaders/mutt/sidebar-utf8.patch | 132 - .../networking/mailreaders/mutt/sidebar.patch | 4657 ++++++++++++++--- .../mailreaders/mutt/trash-folder.patch | 316 -- .../networking/mailreaders/mutt/trash.patch | 797 +++ 10 files changed, 4652 insertions(+), 1807 deletions(-) delete mode 100644 pkgs/applications/networking/mailreaders/mutt/sidebar-compose.patch delete mode 100644 pkgs/applications/networking/mailreaders/mutt/sidebar-delimnullwide.patch delete mode 100644 pkgs/applications/networking/mailreaders/mutt/sidebar-dotpathsep.patch delete mode 100644 pkgs/applications/networking/mailreaders/mutt/sidebar-new.patch delete mode 100644 pkgs/applications/networking/mailreaders/mutt/sidebar-newonly.patch delete mode 100644 pkgs/applications/networking/mailreaders/mutt/sidebar-utf8.patch delete mode 100644 pkgs/applications/networking/mailreaders/mutt/trash-folder.patch create mode 100644 pkgs/applications/networking/mailreaders/mutt/trash.patch diff --git a/pkgs/applications/networking/mailreaders/mutt/default.nix b/pkgs/applications/networking/mailreaders/mutt/default.nix index 1964faf2f5c..31ead22e1fd 100644 --- a/pkgs/applications/networking/mailreaders/mutt/default.nix +++ b/pkgs/applications/networking/mailreaders/mutt/default.nix @@ -1,43 +1,51 @@ { stdenv, fetchurl, ncurses, which, perl, autoreconfHook -, sslSupport ? true -, imapSupport ? true -, headerCache ? true -, saslSupport ? true -, gpgmeSupport ? true , gdbm ? null , openssl ? null , cyrus_sasl ? null , gpgme ? null -, withSidebar ? false +, aclocal ? null +, headerCache ? true +, sslSupport ? true +, saslSupport ? true +, gpgmeSupport ? true +, imapSupport ? true +, withSidebar ? false +, withTrash ? false }: -assert headerCache -> gdbm != null; -assert sslSupport -> openssl != null; -assert saslSupport -> cyrus_sasl != null; -assert gpgmeSupport -> gpgme != null; +assert headerCache -> gdbm != null; +assert sslSupport -> openssl != null; +assert saslSupport -> cyrus_sasl != null; +assert gpgmeSupport -> gpgme != null; + +with stdenv.lib; -let - version = "1.6.0"; -in stdenv.mkDerivation rec { - name = "mutt${stdenv.lib.optionalString withSidebar "-with-sidebar"}-${version}"; + name = "mutt-${version}"; + version = "1.6.2"; src = fetchurl { - url = "http://ftp.mutt.org/pub/mutt/mutt-${version}.tar.gz"; - sha256 = "06bc2drbgalkk68rzg7hq2v5m5qgjxff5357wg0419dpi8ivdbr9"; + url = "http://ftp.mutt.org/pub/mutt/${name}.tar.gz"; + sha256 = "13hxmji7v9m2agmvzrs7gzx8s3c9jiwrv7pbkr7z1kc6ckq2xl65"; }; - buildInputs = with stdenv.lib; + buildInputs = [ ncurses which perl ] - ++ optional headerCache gdbm - ++ optional sslSupport openssl - ++ optional saslSupport cyrus_sasl - ++ optional gpgmeSupport gpgme; - - nativeBuildInputs = stdenv.lib.optional withSidebar autoreconfHook; + ++ optional headerCache gdbm + ++ optional sslSupport openssl + ++ optional saslSupport cyrus_sasl + ++ optional gpgmeSupport gpgme + ++ optional withSidebar autoreconfHook; configureFlags = [ - "--with-mailpath=" "--enable-smtp" + (enableFeature headerCache "hcache") + (enableFeature gpgmeSupport "gpgme") + (enableFeature imapSupport "imap") + (enableFeature withSidebar "sidebar") + "--enable-smtp" + "--enable-pop" + "--enable-imap" + "--with-mailpath=" # Look in $PATH at runtime, instead of hardcoding /usr/bin/sendmail "ac_cv_path_SENDMAIL=sendmail" @@ -45,36 +53,22 @@ stdenv.mkDerivation rec { # This allows calls with "-d N", that output debug info into ~/.muttdebug* "--enable-debug" - "--enable-pop" "--enable-imap" - # The next allows building mutt without having anything setgid # set by the installer, and removing the need for the group 'mail' # I set the value 'mailbox' because it is a default in the configure script "--with-homespool=mailbox" - (if headerCache then "--enable-hcache" else "--disable-hcache") - (if sslSupport then "--with-ssl" else "--without-ssl") - (if imapSupport then "--enable-imap" else "--disable-imap") - (if saslSupport then "--with-sasl" else "--without-sasl") - (if gpgmeSupport then "--enable-gpgme" else "--disable-gpgme") - ]; + ] ++ optional sslSupport "--with-ssl" + ++ optional saslSupport "--with-sasl"; - # Adding the sidebar - patches = stdenv.lib.optional withSidebar [ - ./trash-folder.patch - ./sidebar.patch - ./sidebar-dotpathsep.patch - ./sidebar-utf8.patch - ./sidebar-newonly.patch - ./sidebar-delimnullwide.patch - ./sidebar-compose.patch - ./sidebar-new.patch - ]; + patches = + optional withTrash ./trash.patch ++ + optional withSidebar ./sidebar.patch; - meta = with stdenv.lib; { + meta = { description = "A small but very powerful text-based mail client"; homepage = http://www.mutt.org; - license = stdenv.lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; platforms = platforms.unix; - maintainers = with maintainers; [ the-kenny ]; + maintainers = with maintainers; [ the-kenny rnhmjoj ]; }; } diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-compose.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-compose.patch deleted file mode 100644 index 90d815b841d..00000000000 --- a/pkgs/applications/networking/mailreaders/mutt/sidebar-compose.patch +++ /dev/null @@ -1,40 +0,0 @@ -From: Evgeni Golov -Date: Fri, 14 Mar 2014 08:54:47 +0100 -Subject: sidebar-compose - -draw_sidebar sets SidebarWidth to 0 when sidebar_visible is false. -However, if you start mutt in compose mode, draw_sidebar won't be -called until the next redraw and your header lines will be off by -the width of the sidebar, even when you did not want a sidebar at -all. - -Can be tested with: - HOME=/ LC_ALL=C mutt -e 'unset sidebar_visible' -s test recipient - -Closes: #502627 - -Gbp-Pq: Topic mutt-patched ---- - compose.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/compose.c b/compose.c -index b63695f..0fa6df2 100644 ---- a/compose.c -+++ b/compose.c -@@ -32,6 +32,7 @@ - #include "mailbox.h" - #include "sort.h" - #include "charset.h" -+#include "sidebar.h" - - #ifdef MIXMASTER - #include "remailer.h" -@@ -248,6 +249,7 @@ static void draw_envelope_addr (int line, ADDRESS *addr) - - static void draw_envelope (HEADER *msg, char *fcc) - { -+ draw_sidebar (MENU_COMPOSE); - draw_envelope_addr (HDR_FROM, msg->env->from); - draw_envelope_addr (HDR_TO, msg->env->to); - draw_envelope_addr (HDR_CC, msg->env->cc); diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-delimnullwide.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-delimnullwide.patch deleted file mode 100644 index 11d2ced5a0c..00000000000 --- a/pkgs/applications/networking/mailreaders/mutt/sidebar-delimnullwide.patch +++ /dev/null @@ -1,38 +0,0 @@ -From: Evgeni Golov -Date: Wed, 5 Mar 2014 17:46:07 +0100 -Subject: sidebar-delimnullwide - -SidebarDelim can be NULL and strlen(NULL) is a bad idea, as it will segfault. -Wrap it with NONULL(). - -While at it, change strlen to mbstowcs for better utf8 support. - -Closes: #696145, #663883 - -Gbp-Pq: Topic mutt-patched ---- - sidebar.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/sidebar.c b/sidebar.c -index 51a25ca..c3ea338 100644 ---- a/sidebar.c -+++ b/sidebar.c -@@ -88,7 +88,7 @@ char *make_sidebar_entry(char *box, int size, int new, int flagged) - int box_len, box_bytes; - int int_len; - int right_offset = 0; -- int delim_len = strlen(SidebarDelim); -+ int delim_len = mbstowcs(NULL, NONULL(SidebarDelim), 0); - static char *entry; - - right_width = left_width = 0; -@@ -178,7 +178,7 @@ int draw_sidebar(int menu) { - #ifndef USE_SLANG_CURSES - attr_t attrs; - #endif -- short delim_len = strlen(SidebarDelim); -+ short delim_len = mbstowcs(NULL, NONULL(SidebarDelim), 0); - short color_pair; - - static bool initialized = false; diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-dotpathsep.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-dotpathsep.patch deleted file mode 100644 index 315fa1649bc..00000000000 --- a/pkgs/applications/networking/mailreaders/mutt/sidebar-dotpathsep.patch +++ /dev/null @@ -1,98 +0,0 @@ -From: Fabian Groffen -Date: Tue, 4 Mar 2014 21:12:15 +0100 -Subject: sidebar-dotpathsep - -Make path separators for sidebar folders configurable. - -When using IMAP, a '.' is often used as path separator, hence make the -path separators configurable through sidebar_delim_chars variable. -It defaults to "/." to work for both mboxes as well as IMAP folders. It -can be set to only "/" or "." or whichever character desired as needed. - -Gbp-Pq: Topic mutt-patched ---- - globals.h | 1 + - init.h | 8 ++++++++ - sidebar.c | 31 ++++++++++++++++++++++++------- - 3 files changed, 33 insertions(+), 7 deletions(-) - -diff --git a/globals.h b/globals.h -index 004c795..602f932 100644 ---- a/globals.h -+++ b/globals.h -@@ -119,6 +119,7 @@ WHERE char *SendCharset; - WHERE char *Sendmail; - WHERE char *Shell; - WHERE char *SidebarDelim; -+WHERE char *SidebarDelimChars INITVAL (NULL); - WHERE char *Signature; - WHERE char *SimpleSearch; - #if USE_SMTP -diff --git a/init.h b/init.h -index c664e5f..166671b 100644 ---- a/init.h -+++ b/init.h -@@ -2051,6 +2051,14 @@ struct option_t MuttVars[] = { - ** .pp - ** The width of the sidebar. - */ -+ { "sidebar_delim_chars", DT_STR, R_NONE, UL &SidebarDelimChars, UL "/." }, -+ /* -+ ** .pp -+ ** This contains the list of characters which you would like to treat -+ ** as folder separators for displaying paths in the sidebar. If -+ ** you're not using IMAP folders, you probably prefer setting this to "/" -+ ** alone. -+ */ - { "pgp_use_gpg_agent", DT_BOOL, R_NONE, OPTUSEGPGAGENT, 0}, - /* - ** .pp -diff --git a/sidebar.c b/sidebar.c -index 6098c2a..4356ffc 100644 ---- a/sidebar.c -+++ b/sidebar.c -@@ -249,20 +249,37 @@ int draw_sidebar(int menu) { - // calculate depth of current folder and generate its display name with indented spaces - int sidebar_folder_depth = 0; - char *sidebar_folder_name; -- sidebar_folder_name = basename(tmp->path); -+ int i; -+ sidebar_folder_name = tmp->path; -+ /* disregard a trailing separator, so strlen() - 2 -+ * https://bugs.gentoo.org/show_bug.cgi?id=373197#c16 */ -+ for (i = strlen(sidebar_folder_name) - 2; i >= 0; i--) { -+ if (SidebarDelimChars && -+ strchr(SidebarDelimChars, sidebar_folder_name[i])) -+ { -+ sidebar_folder_name += i + 1; -+ break; -+ } -+ } - if ( maildir_is_prefix ) { - char *tmp_folder_name; -- int i; -+ int lastsep = 0; - tmp_folder_name = tmp->path + strlen(Maildir); -- for (i = 0; i < strlen(tmp->path) - strlen(Maildir); i++) { -- if (tmp_folder_name[i] == '/') sidebar_folder_depth++; -- } -+ for (i = 0; i < strlen(tmp_folder_name) - 1; i++) { -+ if (SidebarDelimChars && -+ strchr(SidebarDelimChars, tmp_folder_name[i])) -+ { -+ sidebar_folder_depth++; -+ lastsep = i + 1; -+ } -+ } - if (sidebar_folder_depth > 0) { -- sidebar_folder_name = malloc(strlen(basename(tmp->path)) + sidebar_folder_depth + 1); -+ tmp_folder_name += lastsep; /* basename */ -+ sidebar_folder_name = malloc(strlen(tmp_folder_name) + sidebar_folder_depth + 1); - for (i=0; i < sidebar_folder_depth; i++) - sidebar_folder_name[i]=' '; - sidebar_folder_name[i]=0; -- strncat(sidebar_folder_name, basename(tmp->path), strlen(basename(tmp->path)) + sidebar_folder_depth); -+ strncat(sidebar_folder_name, tmp_folder_name, strlen(tmp_folder_name) + sidebar_folder_depth); - } - } - printw( "%.*s", SidebarWidth - delim_len + 1, diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-new.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-new.patch deleted file mode 100644 index fb265346361..00000000000 --- a/pkgs/applications/networking/mailreaders/mutt/sidebar-new.patch +++ /dev/null @@ -1,97 +0,0 @@ -From 355399bde98203af59d20821f9e840fc056bd383 Mon Sep 17 00:00:00 2001 -From: Julius Haertl -Date: Tue, 9 Sep 2014 22:31:49 +0200 -Subject: Patch for sidebar iteration functionality - -sidebar-new will move the selected folder to the next with new messages. -If the end is reached, it will start at the top. - -Useful macros would be: - - macro index a "" - macro pager a "" ---- - OPS | 1 + - curs_main.c | 1 + - functions.h | 2 ++ - pager.c | 1 + - sidebar.c | 10 ++++++++++ - 5 files changed, 15 insertions(+) - -diff --git a/OPS b/OPS -index 1ed9c96..3ffb82a 100644 ---- a/OPS -+++ b/OPS -@@ -187,3 +187,4 @@ OP_SIDEBAR_PREV "go to previous mailbox" - OP_SIDEBAR_OPEN "open hilighted mailbox" - OP_SIDEBAR_NEXT_NEW "go down to next mailbox with new mail" - OP_SIDEBAR_PREV_NEW "go to previous mailbox with new mail" -+OP_SIDEBAR_NEW "iterate though mailboxes with new mail" -diff --git a/curs_main.c b/curs_main.c -index acb106d..2e35f90 100644 ---- a/curs_main.c -+++ b/curs_main.c -@@ -2328,6 +2328,7 @@ int mutt_index_menu (void) - case OP_SIDEBAR_PREV: - case OP_SIDEBAR_NEXT_NEW: - case OP_SIDEBAR_PREV_NEW: -+ case OP_SIDEBAR_NEW: - scroll_sidebar(op, menu->menu); - break; - default: -diff --git a/functions.h b/functions.h -index 363b4d5..1485080 100644 ---- a/functions.h -+++ b/functions.h -@@ -176,6 +176,7 @@ const struct binding_t OpMain[] = { /* map: index */ - { "sidebar-prev", OP_SIDEBAR_PREV, NULL }, - { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL}, - { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL}, -+ { "sidebar-new", OP_SIDEBAR_NEW, NULL }, - { "sidebar-open", OP_SIDEBAR_OPEN, NULL }, - { NULL, 0, NULL } - }; -@@ -287,6 +288,7 @@ const struct binding_t OpPager[] = { /* map: pager */ - { "sidebar-prev", OP_SIDEBAR_PREV, NULL }, - { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL}, - { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL}, -+ { "sidebar-new", OP_SIDEBAR_NEW, NULL }, - { "sidebar-open", OP_SIDEBAR_OPEN, NULL }, - { NULL, 0, NULL } - }; -diff --git a/pager.c b/pager.c -index 8d64fe1..696e55c 100644 ---- a/pager.c -+++ b/pager.c -@@ -2791,6 +2791,7 @@ search_next: - case OP_SIDEBAR_PREV: - case OP_SIDEBAR_NEXT_NEW: - case OP_SIDEBAR_PREV_NEW: -+ case OP_SIDEBAR_NEW: - scroll_sidebar(ch, MENU_PAGER); - break; - -diff --git a/sidebar.c b/sidebar.c -index c3ea338..eb8ecd2 100644 ---- a/sidebar.c -+++ b/sidebar.c -@@ -429,6 +429,16 @@ void scroll_sidebar(int op, int menu) - CurBuffy = CurBuffy->next; - } - break; -+ case OP_SIDEBAR_NEW: -+ if ( (tmp = exist_next_new()) == NULL) -+ tmp = TopBuffy; -+ if ( tmp->msg_unread == 0 ) { -+ CurBuffy = tmp; -+ tmp = exist_next_new(); -+ } -+ if ( tmp != NULL ) -+ CurBuffy = tmp; -+ break; - default: - return; - } --- -2.6.0.rc0.2.g7662973.dirty - diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-newonly.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-newonly.patch deleted file mode 100644 index d206848026b..00000000000 --- a/pkgs/applications/networking/mailreaders/mutt/sidebar-newonly.patch +++ /dev/null @@ -1,198 +0,0 @@ -From: Steve Kemp -Date: Tue, 4 Mar 2014 22:07:06 +0100 -Subject: sidebar-newonly - -patches written by Steve Kemp, it adds two new functionalities to the sidebar, -so only the mailbox with new messages will be shown (and/or) selected -See Debian bug http://bugs.debian.org/532510 - -Gbp-Pq: Topic mutt-patched ---- - OPS | 2 ++ - curs_main.c | 2 ++ - functions.h | 4 ++++ - init.h | 5 +++++ - mutt.h | 2 ++ - pager.c | 2 ++ - sidebar.c | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- - 7 files changed, 70 insertions(+), 2 deletions(-) - -diff --git a/OPS b/OPS -index b036db9..1ed9c96 100644 ---- a/OPS -+++ b/OPS -@@ -185,3 +185,5 @@ OP_SIDEBAR_SCROLL_DOWN "scroll the mailbox pane down 1 page" - OP_SIDEBAR_NEXT "go down to next mailbox" - OP_SIDEBAR_PREV "go to previous mailbox" - OP_SIDEBAR_OPEN "open hilighted mailbox" -+OP_SIDEBAR_NEXT_NEW "go down to next mailbox with new mail" -+OP_SIDEBAR_PREV_NEW "go to previous mailbox with new mail" -diff --git a/curs_main.c b/curs_main.c -index ea530a6..acb106d 100644 ---- a/curs_main.c -+++ b/curs_main.c -@@ -2326,6 +2326,8 @@ int mutt_index_menu (void) - case OP_SIDEBAR_SCROLL_DOWN: - case OP_SIDEBAR_NEXT: - case OP_SIDEBAR_PREV: -+ case OP_SIDEBAR_NEXT_NEW: -+ case OP_SIDEBAR_PREV_NEW: - scroll_sidebar(op, menu->menu); - break; - default: -diff --git a/functions.h b/functions.h -index ef8937a..363b4d5 100644 ---- a/functions.h -+++ b/functions.h -@@ -174,6 +174,8 @@ const struct binding_t OpMain[] = { /* map: index */ - { "sidebar-scroll-down", OP_SIDEBAR_SCROLL_DOWN, NULL }, - { "sidebar-next", OP_SIDEBAR_NEXT, NULL }, - { "sidebar-prev", OP_SIDEBAR_PREV, NULL }, -+ { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL}, -+ { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL}, - { "sidebar-open", OP_SIDEBAR_OPEN, NULL }, - { NULL, 0, NULL } - }; -@@ -283,6 +285,8 @@ const struct binding_t OpPager[] = { /* map: pager */ - { "sidebar-scroll-down", OP_SIDEBAR_SCROLL_DOWN, NULL }, - { "sidebar-next", OP_SIDEBAR_NEXT, NULL }, - { "sidebar-prev", OP_SIDEBAR_PREV, NULL }, -+ { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL}, -+ { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL}, - { "sidebar-open", OP_SIDEBAR_OPEN, NULL }, - { NULL, 0, NULL } - }; -diff --git a/init.h b/init.h -index 166671b..a5d4238 100644 ---- a/init.h -+++ b/init.h -@@ -2059,6 +2059,11 @@ struct option_t MuttVars[] = { - ** you're not using IMAP folders, you probably prefer setting this to "/" - ** alone. - */ -+ {"sidebar_newmail_only", DT_BOOL, R_BOTH, OPTSIDEBARNEWMAILONLY, 0 }, -+ /* -+ ** .pp -+ ** Show only new mail in the sidebar. -+ */ - { "pgp_use_gpg_agent", DT_BOOL, R_NONE, OPTUSEGPGAGENT, 0}, - /* - ** .pp -diff --git a/mutt.h b/mutt.h -index 5f25406..d73e514 100644 ---- a/mutt.h -+++ b/mutt.h -@@ -529,6 +529,8 @@ enum - OPTDONTHANDLEPGPKEYS, /* (pseudo) used to extract PGP keys */ - OPTUNBUFFEREDINPUT, /* (pseudo) don't use key buffer */ - -+ OPTSIDEBARNEWMAILONLY, -+ - OPTMAX - }; - -diff --git a/pager.c b/pager.c -index 5cfcb75..8d64fe1 100644 ---- a/pager.c -+++ b/pager.c -@@ -2789,6 +2789,8 @@ search_next: - case OP_SIDEBAR_SCROLL_DOWN: - case OP_SIDEBAR_NEXT: - case OP_SIDEBAR_PREV: -+ case OP_SIDEBAR_NEXT_NEW: -+ case OP_SIDEBAR_PREV_NEW: - scroll_sidebar(ch, MENU_PAGER); - break; - -diff --git a/sidebar.c b/sidebar.c -index 8f58f85..51a25ca 100644 ---- a/sidebar.c -+++ b/sidebar.c -@@ -269,8 +269,21 @@ int draw_sidebar(int menu) { - SETCOLOR(MT_COLOR_NEW); - else if ( tmp->msg_flagged > 0 ) - SETCOLOR(MT_COLOR_FLAGGED); -- else -- SETCOLOR(MT_COLOR_NORMAL); -+ else { -+ /* make sure the path is either: -+ 1. Containing new mail. -+ 2. The inbox. -+ 3. The current box. -+ */ -+ if ((option (OPTSIDEBARNEWMAILONLY)) && -+ ( (tmp->msg_unread <= 0) && -+ ( tmp != Incoming ) && -+ Context && -+ ( strcmp( tmp->path, Context->path ) != 0 ) ) ) -+ continue; -+ else -+ SETCOLOR(MT_COLOR_NORMAL); -+ } - - move( lines, 0 ); - if ( Context && !strcmp( tmp->path, Context->path ) ) { -@@ -336,6 +349,29 @@ int draw_sidebar(int menu) { - return 0; - } - -+BUFFY * exist_next_new() -+{ -+ BUFFY *tmp = CurBuffy; -+ if(tmp == NULL) return NULL; -+ while (tmp->next != NULL) -+ { -+ tmp = tmp->next; -+ if(tmp->msg_unread) return tmp; -+ } -+ return NULL; -+} -+ -+BUFFY * exist_prev_new() -+{ -+ BUFFY *tmp = CurBuffy; -+ if(tmp == NULL) return NULL; -+ while (tmp->prev != NULL) -+ { -+ tmp = tmp->prev; -+ if(tmp->msg_unread) return tmp; -+ } -+ return NULL; -+} - - void set_buffystats(CONTEXT* Context) - { -@@ -352,18 +388,33 @@ void set_buffystats(CONTEXT* Context) - - void scroll_sidebar(int op, int menu) - { -+ BUFFY *tmp; - if(!SidebarWidth) return; - if(!CurBuffy) return; - - switch (op) { - case OP_SIDEBAR_NEXT: -+ if (!option (OPTSIDEBARNEWMAILONLY)) { - if ( CurBuffy->next == NULL ) return; - CurBuffy = CurBuffy->next; - break; -+ } -+ case OP_SIDEBAR_NEXT_NEW: -+ if ( (tmp = exist_next_new()) == NULL) -+ return; -+ else CurBuffy = tmp; -+ break; - case OP_SIDEBAR_PREV: -+ if (!option (OPTSIDEBARNEWMAILONLY)) { - if ( CurBuffy->prev == NULL ) return; - CurBuffy = CurBuffy->prev; - break; -+ } -+ case OP_SIDEBAR_PREV_NEW: -+ if ( (tmp = exist_prev_new()) == NULL) -+ return; -+ else CurBuffy = tmp; -+ break; - case OP_SIDEBAR_SCROLL_UP: - CurBuffy = TopBuffy; - if ( CurBuffy != Incoming ) { diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-utf8.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-utf8.patch deleted file mode 100644 index d67e43c24b6..00000000000 --- a/pkgs/applications/networking/mailreaders/mutt/sidebar-utf8.patch +++ /dev/null @@ -1,132 +0,0 @@ -From: Antonio Radici -Date: Tue, 4 Mar 2014 15:39:14 +0100 -Subject: sidebar-utf8 - -This patch fixes a problem with utf-8 strings and the sidebar, -it rewrites entirely make_sidebar_entry so it also fixes some -segfaults due to misallocations and overflows. - -See: - http://bugs.debian.org/584581 - http://bugs.debian.org/603287 - -Gbp-Pq: Topic mutt-patched ---- - sidebar.c | 97 +++++++++++++++++++++++++++++++++++++++++++-------------------- - 1 file changed, 67 insertions(+), 30 deletions(-) - -diff --git a/sidebar.c b/sidebar.c -index 4356ffc..8f58f85 100644 ---- a/sidebar.c -+++ b/sidebar.c -@@ -30,6 +30,7 @@ - #include - #include "keymap.h" - #include -+#include - - /*BUFFY *CurBuffy = 0;*/ - static BUFFY *TopBuffy = 0; -@@ -82,36 +83,72 @@ void calc_boundaries (int menu) - - char *make_sidebar_entry(char *box, int size, int new, int flagged) - { -- static char *entry = 0; -- char *c; -- int i = 0; -- int delim_len = strlen(SidebarDelim); -- -- c = realloc(entry, SidebarWidth - delim_len + 2); -- if ( c ) entry = c; -- entry[SidebarWidth - delim_len + 1] = 0; -- for (; i < SidebarWidth - delim_len + 1; entry[i++] = ' ' ); -- i = strlen(box); -- strncpy( entry, box, i < (SidebarWidth - delim_len + 1) ? i : (SidebarWidth - delim_len + 1) ); -- -- if (size == -1) -- sprintf(entry + SidebarWidth - delim_len - 3, "?"); -- else if ( new ) { -- if (flagged > 0) { -- sprintf( -- entry + SidebarWidth - delim_len - 5 - quick_log10(size) - quick_log10(new) - quick_log10(flagged), -- "% d(%d)[%d]", size, new, flagged); -- } else { -- sprintf( -- entry + SidebarWidth - delim_len - 3 - quick_log10(size) - quick_log10(new), -- "% d(%d)", size, new); -- } -- } else if (flagged > 0) { -- sprintf( entry + SidebarWidth - delim_len - 3 - quick_log10(size) - quick_log10(flagged), "% d[%d]", size, flagged); -- } else { -- sprintf( entry + SidebarWidth - delim_len - 1 - quick_log10(size), "% d", size); -- } -- return entry; -+ char int_store[20]; // up to 64 bits integers -+ int right_width, left_width; -+ int box_len, box_bytes; -+ int int_len; -+ int right_offset = 0; -+ int delim_len = strlen(SidebarDelim); -+ static char *entry; -+ -+ right_width = left_width = 0; -+ box_len = box_bytes = 0; -+ -+ // allocate an entry big enough to contain SidebarWidth wide chars -+ entry = malloc((SidebarWidth*4)+1); // TODO: error check -+ -+ // determine the right space (i.e.: how big are the numbers that we want to print) -+ if ( size > 0 ) { -+ int_len = snprintf(int_store, sizeof(int_store), "%d", size); -+ right_width += int_len; -+ } else { -+ right_width = 1; // to represent 0 -+ } -+ if ( new > 0 ) { -+ int_len = snprintf(int_store, sizeof(int_store), "%d", new); -+ right_width += int_len + 2; // 2 is for () -+ } -+ if ( flagged > 0 ) { -+ int_len = snprintf(int_store, sizeof(int_store), "%d", flagged); -+ right_width += int_len + 2; // 2 is for [] -+ } -+ -+ // determine how much space we have for *box and its padding (if any) -+ left_width = SidebarWidth - right_width - 1 - delim_len; // 1 is for the space -+ //fprintf(stdout, "left_width: %d right_width: %d\n", left_width, right_width); -+ // right side overflow case -+ if ( left_width <= 0 ) { -+ snprintf(entry, SidebarWidth*4, "%-*.*s ...", SidebarWidth-4-delim_len, SidebarWidth-4-delim_len, box); -+ return entry; -+ } -+ right_width -= delim_len; -+ -+ // to support utf-8 chars we need to add enough space padding in case there -+ // are less chars than bytes in *box -+ box_len = mbstowcs(NULL, box, 0); -+ box_bytes = strlen(box); -+ // debug -+ //fprintf(stdout, "box_len: %d box_bytes: %d (diff: %d)\n", box_len, box_bytes, (box_bytes-box_len)); -+ // if there is less string than the space we allow, then we will add the -+ // spaces -+ if ( box_len != -1 && box_len < left_width ) { -+ left_width += (box_bytes - box_len); -+ } -+ // otherwise sprintf will truncate the string for us (therefore, no else case) -+ -+ // print the sidebar entry (without new and flagged messages, at the moment) -+ //fprintf(stdout, "left_width: %d right_width: %d\n", left_width, right_width); -+ right_offset = snprintf(entry, SidebarWidth*4, "%-*.*s %d", left_width, left_width, box, size); -+ -+ // then pad new and flagged messages if any -+ if ( new > 0 ) { -+ right_offset += snprintf(entry+right_offset, SidebarWidth*4-right_offset, "(%d)", new); -+ } -+ if ( flagged > 0 ) { -+ right_offset += snprintf(entry+right_offset, SidebarWidth*4-right_offset, "[%d]", flagged); -+ } -+ -+ return entry; - } - - void set_curbuffy(char buf[LONG_STRING]) diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar.patch index bac1b4ab83b..218de7a0c46 100644 --- a/pkgs/applications/networking/mailreaders/mutt/sidebar.patch +++ b/pkgs/applications/networking/mailreaders/mutt/sidebar.patch @@ -1,306 +1,373 @@ -From: Antonio Radici -Date: Tue, 4 Mar 2014 15:21:10 +0100 -Subject: sidebar - -When enabled, mutt will show a list of mailboxes with (new) message counts in a -separate column on the left side of the screen. - -As this feature is still considered to be unstable, this patch is only applied -in the "mutt-patched" package. - -* Configuration variables: - - sidebar_delim (string, default "|") - - This specifies the delimiter between the sidebar (if visible) and - other screens. - - sidebar_visible (boolean, default no) - - This specifies whether or not to show sidebar (left-side list of folders). - - sidebar_width (integer, default 0) -- - The width of the sidebar. - -* Patch source: - - http://www.lunar-linux.org/index.php?page=mutt-sidebar - - http://lunar-linux.org/~tchan/mutt/patch-1.5.19.sidebar.20090522.txt - -* Changes made: - - 2008-08-02 myon: Refreshed patch using quilt push -f to remove hunks we do - not need (Makefile.in). - - - 2014-03-04 evgeni: refresh sidebar patch with the version from OpenBSD - Source: - ftp://ftp.openbsd.org/pub/OpenBSD/distfiles/mutt/sidebar-1.5.22.diff1.gz - -Signed-off-by: Matteo F. Vescovi -Signed-off-by: Evgeni Golov - -Gbp-Pq: Topic mutt-patched ---- - Makefile.am | 1 + - OPS | 5 + - buffy.c | 124 +++++++++++++++++++++ - buffy.h | 4 + - color.c | 2 + - compose.c | 26 ++--- - curs_main.c | 30 +++++- - flags.c | 3 + - functions.h | 10 ++ - globals.h | 4 + - imap/command.c | 7 ++ - imap/imap.c | 2 +- - init.h | 21 ++++ - mailbox.h | 1 + - mbox.c | 2 + - menu.c | 20 ++-- - mh.c | 22 ++++ - mutt.h | 4 + - mutt_curses.h | 3 + - muttlib.c | 48 +++++++++ - mx.c | 15 +++ - mx.h | 1 + - pager.c | 30 ++++-- - sidebar.c | 333 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - sidebar.h | 36 +++++++ - 25 files changed, 720 insertions(+), 34 deletions(-) - create mode 100644 sidebar.c - create mode 100644 sidebar.h - -diff --git a/Makefile.am b/Makefile.am -index 5dfeff6..cf1ac98 100644 ---- a/Makefile.am -+++ b/Makefile.am -@@ -33,6 +33,7 @@ mutt_SOURCES = \ - rfc822.c rfc1524.c rfc2047.c rfc2231.c rfc3676.c \ - score.c send.c sendlib.c signal.c sort.c \ - status.c system.c thread.c charset.c history.c lib.c \ -+ sidebar.c \ - muttlib.c editmsg.c mbyte.c mutt_idna.c \ - url.c ascii.c crypt-mod.c crypt-mod.h safe_asprintf.c +diff -urN mutt-1.6.1/buffy.c mutt-1.6.1-sidebar/buffy.c +--- mutt-1.6.1/buffy.c 2016-06-12 18:43:00.397447512 +0100 ++++ mutt-1.6.1-sidebar/buffy.c 2016-06-12 18:43:03.951502935 +0100 +@@ -27,6 +27,10 @@ -diff --git a/OPS b/OPS -index 02cea8e..b036db9 100644 ---- a/OPS -+++ b/OPS -@@ -180,3 +180,8 @@ OP_WHAT_KEY "display the keycode for a key press" - OP_MAIN_SHOW_LIMIT "show currently active limit pattern" - OP_MAIN_COLLAPSE_THREAD "collapse/uncollapse current thread" - OP_MAIN_COLLAPSE_ALL "collapse/uncollapse all threads" -+OP_SIDEBAR_SCROLL_UP "scroll the mailbox pane up 1 page" -+OP_SIDEBAR_SCROLL_DOWN "scroll the mailbox pane down 1 page" -+OP_SIDEBAR_NEXT "go down to next mailbox" -+OP_SIDEBAR_PREV "go to previous mailbox" -+OP_SIDEBAR_OPEN "open hilighted mailbox" -diff --git a/buffy.c b/buffy.c -index 12a16d1..90ca6db 100644 ---- a/buffy.c -+++ b/buffy.c -@@ -161,6 +161,49 @@ void mutt_buffy_cleanup (const char *buf, struct stat *st) - } - } + #include "mutt_curses.h" -+static int buffy_compare_name(const void *a, const void *b) { -+ const BUFFY *b1 = * (BUFFY * const *) a; -+ const BUFFY *b2 = * (BUFFY * const *) b; ++#ifdef USE_SIDEBAR ++#include "sidebar.h" ++#endif + -+ return mutt_strcoll(b1->path, b2->path); -+} -+ -+static BUFFY *buffy_sort(BUFFY *b) -+{ -+ BUFFY *tmp = b; -+ int buffycount = 0; -+ BUFFY **ary; -+ int i; -+ -+ if (!option(OPTSIDEBARSORT)) -+ return b; -+ -+ for (; tmp != NULL; tmp = tmp->next) -+ buffycount++; -+ -+ ary = (BUFFY **) safe_calloc(buffycount, sizeof (*ary)); -+ -+ tmp = b; -+ for (i = 0; tmp != NULL; tmp = tmp->next, i++) { -+ ary[i] = tmp; -+ } -+ -+ qsort(ary, buffycount, sizeof(*ary), buffy_compare_name); -+ -+ for (i = 0; i < buffycount - 1; i++) { -+ ary[i]->next = ary[i+1]; -+ } -+ ary[buffycount - 1]->next = NULL; -+ for (i = 1; i < buffycount; i++) { -+ ary[i]->prev = ary[i-1]; -+ } -+ ary[0]->prev = NULL; -+ -+ tmp = ary[0]; -+ free(ary); -+ return tmp; -+} -+ - BUFFY *mutt_find_mailbox (const char *path) + #ifdef USE_IMAP + #include "imap.h" + #endif +@@ -196,9 +200,17 @@ + static BUFFY *buffy_new (const char *path) { - BUFFY *tmp = NULL; -@@ -282,6 +325,7 @@ int mutt_parse_mailboxes (BUFFER *path, BUFFER *s, unsigned long data, BUFFER *e - else - (*tmp)->size = 0; + BUFFY* buffy; ++#ifdef USE_SIDEBAR ++ char rp[PATH_MAX] = ""; ++ char *r = NULL; ++#endif + + buffy = (BUFFY *) safe_calloc (1, sizeof (BUFFY)); + strfcpy (buffy->path, path, sizeof (buffy->path)); ++#ifdef USE_SIDEBAR ++ r = realpath (path, rp); ++ strfcpy (buffy->realpath, r ? rp : path, sizeof (buffy->realpath)); ++#endif + buffy->next = NULL; + buffy->magic = 0; + +@@ -215,7 +227,10 @@ + BUFFY **tmp,*tmp1; + char buf[_POSIX_PATH_MAX]; + struct stat sb; +- char f1[PATH_MAX], f2[PATH_MAX]; ++ char f1[PATH_MAX]; ++#ifndef USE_SIDEBAR ++ char f2[PATH_MAX]; ++#endif + char *p, *q; + + while (MoreArgs (s)) +@@ -228,6 +243,9 @@ + for (tmp = &Incoming; *tmp;) + { + tmp1=(*tmp)->next; ++#ifdef USE_SIDEBAR ++ mutt_sb_notify_mailbox (*tmp, 0); ++#endif + buffy_free (tmp); + *tmp=tmp1; + } +@@ -243,8 +261,13 @@ + p = realpath (buf, f1); + for (tmp = &Incoming; *tmp; tmp = &((*tmp)->next)) + { ++#ifdef USE_SIDEBAR ++ q = (*tmp)->realpath; ++ if (mutt_strcmp (p ? p : buf, q) == 0) ++#else + q = realpath ((*tmp)->path, f2); + if (mutt_strcmp (p ? p : buf, q ? q : (*tmp)->path) == 0) ++#endif + { + dprint(3,(debugfile,"mailbox '%s' already registered as '%s'\n", buf, (*tmp)->path)); + break; +@@ -256,14 +279,21 @@ + if(*tmp) + { + tmp1=(*tmp)->next; ++#ifdef USE_SIDEBAR ++ mutt_sb_notify_mailbox (*tmp, 0); ++#endif + buffy_free (tmp); + *tmp=tmp1; + } + continue; + } + +- if (!*tmp) ++ if (!*tmp) { + *tmp = buffy_new (buf); ++#ifdef USE_SIDEBAR ++ mutt_sb_notify_mailbox (*tmp, 1); ++#endif ++ } + + (*tmp)->new = 0; + (*tmp)->notified = 1; +@@ -306,6 +336,13 @@ + return 0; } -+ Incoming = buffy_sort(Incoming); - return 0; - } -@@ -357,6 +401,69 @@ static int buffy_maildir_hasnew (BUFFY* mailbox) ++#ifdef USE_SIDEBAR ++ if (option (OPTSIDEBAR) && mailbox->msg_unread > 0) { ++ mailbox->new = 1; ++ return 1; ++ } ++#endif ++ + if ((dirp = opendir (path)) == NULL) + { + mailbox->magic = 0; +@@ -357,6 +394,93 @@ return 0; } + -+/* update message counts for the sidebar */ -+void buffy_maildir_update (BUFFY* mailbox) ++#ifdef USE_SIDEBAR ++/** ++ * buffy_maildir_update_dir - Update counts for one directory ++ * @mailbox: BUFFY representing a maildir mailbox ++ * @dir: Which directory to search ++ * ++ * Look through one directory of a maildir mailbox. The directory could ++ * be either "new" or "cur". ++ * ++ * Count how many new, or flagged, messages there are. ++ */ ++static void ++buffy_maildir_update_dir (BUFFY *mailbox, const char *dir) +{ -+ char path[_POSIX_PATH_MAX]; -+ DIR *dirp; -+ struct dirent *de; -+ char *p; ++ char path[_POSIX_PATH_MAX] = ""; ++ DIR *dirp = NULL; ++ struct dirent *de = NULL; ++ char *p = NULL; ++ int read; + -+ mailbox->msgcount = 0; -+ mailbox->msg_unread = 0; -+ mailbox->msg_flagged = 0; ++ snprintf (path, sizeof (path), "%s/%s", mailbox->path, dir); + -+ snprintf (path, sizeof (path), "%s/new", mailbox->path); -+ -+ if ((dirp = opendir (path)) == NULL) -+ { ++ dirp = opendir (path); ++ if (!dirp) ++ { + mailbox->magic = 0; + return; -+ } -+ ++ } ++ + while ((de = readdir (dirp)) != NULL) + { + if (*de->d_name == '.') + continue; + -+ if (!(p = strstr (de->d_name, ":2,")) || !strchr (p + 3, 'T')) { -+ mailbox->new = 1; -+ mailbox->msgcount++; ++ /* Matches maildir_parse_flags logic */ ++ read = 0; ++ mailbox->msg_count++; ++ p = strstr (de->d_name, ":2,"); ++ if (p) ++ { ++ p += 3; ++ if (strchr (p, 'S')) ++ read = 1; ++ if (strchr (p, 'F')) ++ mailbox->msg_flagged++; ++ } ++ if (!read) { + mailbox->msg_unread++; + } + } + + closedir (dirp); -+ snprintf (path, sizeof (path), "%s/cur", mailbox->path); -+ -+ if ((dirp = opendir (path)) == NULL) -+ { -+ mailbox->magic = 0; -+ return; -+ } -+ -+ while ((de = readdir (dirp)) != NULL) -+ { -+ if (*de->d_name == '.') -+ continue; -+ -+ if (!(p = strstr (de->d_name, ":2,")) || !strchr (p + 3, 'T')) { -+ mailbox->msgcount++; -+ if ((p = strstr (de->d_name, ":2,"))) { -+ if (!strchr (p + 3, 'T')) { -+ if (!strchr (p + 3, 'S')) -+ mailbox->msg_unread++; -+ if (strchr(p + 3, 'F')) -+ mailbox->msg_flagged++; -+ } -+ } -+ } -+ } -+ -+ closedir (dirp); +} ++ ++/** ++ * buffy_maildir_update - Update messages counts for a maildir mailbox ++ * @mailbox: BUFFY representing a maildir mailbox ++ * ++ * Open a mailbox directories and update our record of how many new, or ++ * flagged, messages there are. ++ */ ++void ++buffy_maildir_update (BUFFY *mailbox) ++{ ++ if (!option (OPTSIDEBAR)) ++ return; ++ ++ mailbox->msg_count = 0; ++ mailbox->msg_unread = 0; ++ mailbox->msg_flagged = 0; ++ ++ buffy_maildir_update_dir (mailbox, "new"); ++ if (mailbox->msg_count) { ++ mailbox->new = 1; ++ } ++ buffy_maildir_update_dir (mailbox, "cur"); ++ ++ mailbox->sb_last_checked = time (NULL); ++ ++ /* make sure the updates are actually put on screen */ ++ if (SidebarWidth) ++ mutt_sb_draw(); ++} ++ ++#endif + /* returns 1 if mailbox has new mail */ static int buffy_mbox_hasnew (BUFFY* mailbox, struct stat *sb) { -@@ -388,6 +495,20 @@ static int buffy_mbox_hasnew (BUFFY* mailbox, struct stat *sb) +@@ -368,7 +491,11 @@ + else + statcheck = sb->st_mtime > sb->st_atime + || (mailbox->newly_created && sb->st_ctime == sb->st_mtime && sb->st_ctime == sb->st_atime); ++#ifdef USE_SIDEBAR ++ if ((!option (OPTSIDEBAR) && statcheck) || (option (OPTSIDEBAR) && mailbox->msg_unread > 0)) ++#else + if (statcheck) ++#endif + { + if (!option(OPTMAILCHECKRECENT) || sb->st_mtime > mailbox->last_visited) + { +@@ -388,6 +515,42 @@ return rc; } -+/* update message counts for the sidebar */ -+void buffy_mbox_update (BUFFY* mailbox) ++#ifdef USE_SIDEBAR ++/** ++ * buffy_mbox_update - Update messages counts for an mbox mailbox ++ * @mailbox: BUFFY representing an mbox mailbox ++ * @sb: stat(2) infomation about the mailbox file ++ * ++ * Open a mbox file and update our record of how many new, or flagged, ++ * messages there are. If the mailbox hasn't changed since the last call, ++ * the function does nothing. ++ */ ++void ++buffy_mbox_update (BUFFY *mailbox, struct stat *sb) +{ + CONTEXT *ctx = NULL; + -+ ctx = mx_open_mailbox(mailbox->path, M_READONLY | M_QUIET | M_NOSORT | M_PEEK, NULL); -+ if(ctx) ++ if (!option (OPTSIDEBAR)) ++ return; ++ if ((mailbox->sb_last_checked > sb->st_mtime) && (mailbox->msg_count != 0)) ++ return; /* no check necessary */ ++ ++ ctx = mx_open_mailbox (mailbox->path, M_READONLY | M_QUIET | M_NOSORT | M_PEEK, NULL); ++ if (ctx) + { -+ mailbox->msgcount = ctx->msgcount; -+ mailbox->msg_unread = ctx->unread; -+ mx_close_mailbox(ctx, 0); ++ mailbox->msg_count = ctx->msgcount; ++ mailbox->msg_unread = ctx->unread; ++ mailbox->msg_flagged = ctx->flagged; ++ mailbox->sb_last_checked = time (NULL); ++ mx_close_mailbox (ctx, 0); + } ++ ++ /* make sure the updates are actually put on screen */ ++ if (SidebarWidth) ++ mutt_sb_draw(); +} ++#endif + int mutt_buffy_check (int force) { BUFFY *tmp; -@@ -461,16 +582,19 @@ int mutt_buffy_check (int force) +@@ -461,16 +623,25 @@ { case M_MBOX: case M_MMDF: -+ buffy_mbox_update (tmp); ++#ifdef USE_SIDEBAR ++ buffy_mbox_update (tmp, &sb); ++#endif if (buffy_mbox_hasnew (tmp, &sb) > 0) BuffyCount++; break; case M_MAILDIR: ++#ifdef USE_SIDEBAR + buffy_maildir_update (tmp); ++#endif if (buffy_maildir_hasnew (tmp) > 0) BuffyCount++; break; case M_MH: -+ mh_buffy_update (tmp->path, &tmp->msgcount, &tmp->msg_unread, &tmp->msg_flagged); ++#ifdef USE_SIDEBAR ++ mh_buffy_update (tmp); ++#endif mh_buffy(tmp); if (tmp->new) BuffyCount++; -diff --git a/buffy.h b/buffy.h -index f9fc55a..672d178 100644 ---- a/buffy.h -+++ b/buffy.h -@@ -25,7 +25,11 @@ typedef struct buffy_t +diff -urN mutt-1.6.1/buffy.h mutt-1.6.1-sidebar/buffy.h +--- mutt-1.6.1/buffy.h 2016-06-12 18:43:00.397447512 +0100 ++++ mutt-1.6.1-sidebar/buffy.h 2016-06-12 18:43:03.951502935 +0100 +@@ -16,6 +16,9 @@ + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + ++#ifndef _BUFFY_H ++#define _BUFFY_H ++ + /*parameter to mutt_parse_mailboxes*/ + #define M_MAILBOXES 1 + #define M_UNMAILBOXES 2 +@@ -23,13 +26,28 @@ + typedef struct buffy_t + { char path[_POSIX_PATH_MAX]; ++#ifdef USE_SIDEBAR ++ char realpath[_POSIX_PATH_MAX]; ++#endif off_t size; struct buffy_t *next; ++#ifdef USE_SIDEBAR + struct buffy_t *prev; ++#endif short new; /* mailbox has new mail */ -+ int msgcount; /* total number of messages */ ++#ifdef USE_SIDEBAR ++ int msg_count; /* total number of messages */ + int msg_unread; /* number of unread messages */ + int msg_flagged; /* number of flagged messages */ ++ short is_hidden; /* is hidden from the sidebar */ ++#endif short notified; /* user has been notified */ short magic; /* mailbox type */ short newly_created; /* mbox or mmdf just popped into existence */ -diff --git a/color.c b/color.c -index 64a46dc..d6f9198 100644 ---- a/color.c -+++ b/color.c -@@ -94,6 +94,8 @@ static const struct mapping_t Fields[] = + time_t last_visited; /* time of last exit from this mailbox */ ++#ifdef USE_SIDEBAR ++ time_t sb_last_checked; /* time of last buffy check from sidebar */ ++#endif + } + BUFFY; + +@@ -49,3 +67,5 @@ + void mutt_buffy_setnotified (const char *path); + + void mh_buffy (BUFFY *); ++ ++#endif /* _BUFFY_H */ +diff -urN mutt-1.6.1/color.c mutt-1.6.1-sidebar/color.c +--- mutt-1.6.1/color.c 2016-06-12 18:43:00.397447512 +0100 ++++ mutt-1.6.1-sidebar/color.c 2016-06-12 18:43:03.951502935 +0100 +@@ -94,6 +94,14 @@ { "underline", MT_COLOR_UNDERLINE }, { "index", MT_COLOR_INDEX }, { "prompt", MT_COLOR_PROMPT }, -+ { "sidebar_new", MT_COLOR_NEW }, ++#ifdef USE_SIDEBAR ++ { "sidebar_divider", MT_COLOR_DIVIDER }, + { "sidebar_flagged", MT_COLOR_FLAGGED }, ++ { "sidebar_highlight",MT_COLOR_HIGHLIGHT }, ++ { "sidebar_indicator",MT_COLOR_SB_INDICATOR }, ++ { "sidebar_new", MT_COLOR_NEW }, ++ { "sidebar_spoolfile",MT_COLOR_SB_SPOOLFILE }, ++#endif { NULL, 0 } }; -diff --git a/compose.c b/compose.c -index 9d87060..b63695f 100644 ---- a/compose.c -+++ b/compose.c -@@ -72,7 +72,7 @@ enum +@@ -146,6 +154,9 @@ + ColorDefs[MT_COLOR_INDICATOR] = A_REVERSE; + ColorDefs[MT_COLOR_SEARCH] = A_REVERSE; + ColorDefs[MT_COLOR_MARKERS] = A_REVERSE; ++#ifdef USE_SIDEBAR ++ ColorDefs[MT_COLOR_HIGHLIGHT] = A_UNDERLINE; ++#endif + /* special meaning: toggle the relevant attribute */ + ColorDefs[MT_COLOR_BOLD] = 0; + ColorDefs[MT_COLOR_UNDERLINE] = 0; +diff -urN mutt-1.6.1/compose.c mutt-1.6.1-sidebar/compose.c +--- mutt-1.6.1/compose.c 2016-06-12 18:43:00.398447528 +0100 ++++ mutt-1.6.1-sidebar/compose.c 2016-06-12 18:43:03.952502951 +0100 +@@ -32,6 +32,9 @@ + #include "mailbox.h" + #include "sort.h" + #include "charset.h" ++#ifdef USE_SIDEBAR ++#include "sidebar.h" ++#endif + + #ifdef MIXMASTER + #include "remailer.h" +@@ -72,7 +75,7 @@ #define HDR_XOFFSET 10 #define TITLE_FMT "%10s" /* Used for Prompts, which are ASCII */ @@ -309,16 +376,16 @@ index 9d87060..b63695f 100644 static const char * const Prompts[] = { -@@ -110,7 +110,7 @@ static void snd_entry (char *b, size_t blen, MUTTMENU *menu, int num) +@@ -110,7 +113,7 @@ static void redraw_crypt_lines (HEADER *msg) { - mvaddstr (HDR_CRYPT, 0, "Security: "); -+ mvaddstr (HDR_CRYPT, SidebarWidth, "Security: "); ++ mvprintw (HDR_CRYPT, SidebarWidth, TITLE_FMT, "Security: "); if ((WithCrypto & (APPLICATION_PGP | APPLICATION_SMIME)) == 0) { -@@ -145,7 +145,7 @@ static void redraw_crypt_lines (HEADER *msg) +@@ -145,16 +148,16 @@ addstr (_(" (OppEnc mode)")); clrtoeol (); @@ -327,7 +394,18 @@ index 9d87060..b63695f 100644 clrtoeol (); if ((WithCrypto & APPLICATION_PGP) -@@ -162,7 +162,7 @@ static void redraw_crypt_lines (HEADER *msg) + && (msg->security & APPLICATION_PGP) && (msg->security & SIGN)) +- printw ("%s%s", _(" sign as: "), PgpSignAs ? PgpSignAs : _("")); ++ printw (TITLE_FMT "%s", _("sign as: "), PgpSignAs ? PgpSignAs : _("")); + + if ((WithCrypto & APPLICATION_SMIME) + && (msg->security & APPLICATION_SMIME) && (msg->security & SIGN)) { +- printw ("%s%s", _(" sign as: "), SmimeDefaultKey ? SmimeDefaultKey : _("")); ++ printw (TITLE_FMT "%s", _("sign as: "), SmimeDefaultKey ? SmimeDefaultKey : _("")); + } + + if ((WithCrypto & APPLICATION_SMIME) +@@ -162,7 +165,7 @@ && (msg->security & ENCRYPT) && SmimeCryptAlg && *SmimeCryptAlg) { @@ -336,16 +414,17 @@ index 9d87060..b63695f 100644 NONULL(SmimeCryptAlg)); } } -@@ -175,7 +175,7 @@ static void redraw_mix_line (LIST *chain) +@@ -175,7 +178,8 @@ int c; char *t; - mvaddstr (HDR_MIX, 0, " Mix: "); -+ mvaddstr (HDR_MIX, SidebarWidth, " Mix: "); ++ /* L10N: "Mix" refers to the MixMaster chain for anonymous email */ ++ mvprintw (HDR_MIX, SidebarWidth, TITLE_FMT, _("Mix: ")); if (!chain) { -@@ -190,7 +190,7 @@ static void redraw_mix_line (LIST *chain) +@@ -190,7 +194,7 @@ if (t && t[0] == '0' && t[1] == '\0') t = ""; @@ -354,7 +433,7 @@ index 9d87060..b63695f 100644 break; addstr (NONULL(t)); -@@ -242,7 +242,7 @@ static void draw_envelope_addr (int line, ADDRESS *addr) +@@ -242,20 +246,23 @@ buf[0] = 0; rfc822_write_address (buf, sizeof (buf), addr, 1); @@ -363,7 +442,12 @@ index 9d87060..b63695f 100644 mutt_paddstr (W, buf); } -@@ -252,10 +252,10 @@ static void draw_envelope (HEADER *msg, char *fcc) + static void draw_envelope (HEADER *msg, char *fcc) + { ++#ifdef USE_SIDEBAR ++ mutt_sb_draw(); ++#endif + draw_envelope_addr (HDR_FROM, msg->env->from); draw_envelope_addr (HDR_TO, msg->env->to); draw_envelope_addr (HDR_CC, msg->env->cc); draw_envelope_addr (HDR_BCC, msg->env->bcc); @@ -376,7 +460,7 @@ index 9d87060..b63695f 100644 mutt_paddstr (W, fcc); if (WithCrypto) -@@ -266,7 +266,7 @@ static void draw_envelope (HEADER *msg, char *fcc) +@@ -266,7 +273,7 @@ #endif SETCOLOR (MT_COLOR_STATUS); @@ -385,16 +469,25 @@ index 9d87060..b63695f 100644 clrtoeol (); NORMAL_COLOR; -@@ -302,7 +302,7 @@ static int edit_address_list (int line, ADDRESS **addr) +@@ -302,7 +309,7 @@ /* redraw the expanded list so the user can see the result */ buf[0] = 0; rfc822_write_address (buf, sizeof (buf), *addr, 1); - move (line, HDR_XOFFSET); -+ move (line, HDR_XOFFSET+SidebarWidth); ++ move (line, HDR_XOFFSET + SidebarWidth); mutt_paddstr (W, buf); return 0; -@@ -562,7 +562,7 @@ int mutt_compose_menu (HEADER *msg, /* structure for new message */ +@@ -515,7 +522,7 @@ + menu->tag = mutt_tag_attach; + menu->data = idx; + menu->help = mutt_compile_help (helpstr, sizeof (helpstr), MENU_COMPOSE, ComposeHelp); +- ++ + while (loop) + { + switch (op = mutt_menuLoop (menu)) +@@ -564,7 +571,7 @@ if (mutt_get_field ("Subject: ", buf, sizeof (buf), 0) == 0) { mutt_str_replace (&msg->env->subject, buf); @@ -403,7 +496,7 @@ index 9d87060..b63695f 100644 if (msg->env->subject) mutt_paddstr (W, msg->env->subject); else -@@ -580,7 +580,7 @@ int mutt_compose_menu (HEADER *msg, /* structure for new message */ +@@ -582,7 +589,7 @@ { strfcpy (fcc, buf, fcclen); mutt_pretty_mailbox (fcc, fcclen); @@ -412,57 +505,118 @@ index 9d87060..b63695f 100644 mutt_paddstr (W, fcc); fccSet = 1; } -diff --git a/curs_main.c b/curs_main.c -index 9d718ee..ea530a6 100644 ---- a/curs_main.c -+++ b/curs_main.c -@@ -26,7 +26,9 @@ +diff -urN mutt-1.6.1/configure.ac mutt-1.6.1-sidebar/configure.ac +--- mutt-1.6.1/configure.ac 2016-06-12 18:43:00.398447528 +0100 ++++ mutt-1.6.1-sidebar/configure.ac 2016-06-12 18:43:03.952502951 +0100 +@@ -175,6 +175,14 @@ + SMIMEAUX_TARGET="smime_keys" + fi + ++AC_ARG_ENABLE(sidebar, AC_HELP_STRING([--enable-sidebar], [Enable Sidebar support]), ++[ if test x$enableval = xyes ; then ++ AC_DEFINE(USE_SIDEBAR, 1, [Define if you want support for the sidebar.]) ++ OPS="$OPS \$(srcdir)/OPS.SIDEBAR" ++ MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS sidebar.o" ++ fi ++]) ++ + AC_ARG_WITH(mixmaster, AS_HELP_STRING([--with-mixmaster@<:@=PATH@:>@],[Include Mixmaster support]), + [if test "$withval" != no + then +diff -urN mutt-1.6.1/copy.c mutt-1.6.1-sidebar/copy.c +--- mutt-1.6.1/copy.c 2016-06-12 18:43:00.398447528 +0100 ++++ mutt-1.6.1-sidebar/copy.c 2016-06-12 18:43:03.952502951 +0100 +@@ -288,7 +288,8 @@ + if (flags & (CH_DECODE|CH_PREFIX)) + { + if (mutt_write_one_header (out, 0, headers[x], +- flags & CH_PREFIX ? prefix : 0, mutt_term_width (Wrap), flags) == -1) ++ flags & CH_PREFIX ? prefix : 0, ++ mutt_term_width (Wrap), flags) == -1) + { + error = TRUE; + break; +diff -urN mutt-1.6.1/curs_main.c mutt-1.6.1-sidebar/curs_main.c +--- mutt-1.6.1/curs_main.c 2016-06-12 18:43:00.399447544 +0100 ++++ mutt-1.6.1-sidebar/curs_main.c 2016-06-12 18:43:03.953502966 +0100 +@@ -26,8 +26,13 @@ #include "mailbox.h" #include "mapping.h" #include "sort.h" +#include "buffy.h" #include "mx.h" -+#include "sidebar.h" ++#ifdef USE_SIDEBAR ++#include "sidebar.h" ++#endif ++ #ifdef USE_POP #include "pop.h" -@@ -596,8 +598,12 @@ int mutt_index_menu (void) + #endif +@@ -595,21 +600,39 @@ menu->redraw |= REDRAW_STATUS; if (do_buffy_notify) { - if (mutt_buffy_notify () && option (OPTBEEPNEW)) - beep (); -+ if (mutt_buffy_notify ()) ++ if (mutt_buffy_notify()) + { -+ menu->redraw |= REDRAW_FULL; ++ menu->redraw |= REDRAW_STATUS; + if (option (OPTBEEPNEW)) -+ beep (); ++ beep(); + } } else do_buffy_notify = 1; -@@ -609,6 +615,7 @@ int mutt_index_menu (void) + } + ++#ifdef USE_SIDEBAR ++ if (option (OPTSIDEBAR)) ++ menu->redraw |= REDRAW_SIDEBAR; ++#endif ++ + if (op != -1) + mutt_curs_set (0); + if (menu->redraw & REDRAW_FULL) { menu_redraw_full (menu); -+ draw_sidebar(menu->menu); ++#ifdef USE_SIDEBAR ++ mutt_sb_draw(); ++#endif mutt_show_error (); } ++#ifdef USE_SIDEBAR ++ else if (menu->redraw & REDRAW_SIDEBAR) { ++ mutt_sb_draw(); ++ menu->redraw &= ~REDRAW_SIDEBAR; ++ } ++#endif -@@ -631,9 +638,12 @@ int mutt_index_menu (void) + if (menu->menu == MENU_MAIN) + { +@@ -630,9 +653,20 @@ if (menu->redraw & REDRAW_STATUS) { -+ DrawFullLine = 1; ++#ifdef USE_SIDEBAR ++ /* Temporarily lie about the sidebar width */ ++ short sw = SidebarWidth; ++ SidebarWidth = 0; ++#endif menu_status_line (buf, sizeof (buf), menu, NONULL (Status)); -+ DrawFullLine = 0; ++#ifdef USE_SIDEBAR ++ SidebarWidth = sw; /* Restore the sidebar width */ ++#endif move (option (OPTSTATUSONTOP) ? 0 : LINES-2, 0); SETCOLOR (MT_COLOR_STATUS); -+ set_buffystats(Context); ++#ifdef USE_SIDEBAR ++ mutt_sb_set_buffystats (Context); ++#endif mutt_paddstr (COLS, buf); NORMAL_COLOR; menu->redraw &= ~REDRAW_STATUS; -@@ -653,7 +663,7 @@ int mutt_index_menu (void) +@@ -652,7 +686,7 @@ menu->oldcurrent = -1; if (option (OPTARROWCURSOR)) @@ -471,229 +625,1948 @@ index 9d718ee..ea530a6 100644 else if (option (OPTBRAILLEFRIENDLY)) move (menu->current - menu->top + menu->offset, 0); else -@@ -1154,6 +1164,7 @@ int mutt_index_menu (void) +@@ -1091,6 +1125,9 @@ + break; + + CHECK_MSGCOUNT; ++#ifdef USE_SIDEBAR ++ CHECK_VISIBLE; ++#endif + CHECK_READONLY; + { + int oldvcount = Context->vcount; +@@ -1150,6 +1187,9 @@ menu->redraw = REDRAW_FULL; break; ++#ifdef USE_SIDEBAR + case OP_SIDEBAR_OPEN: ++#endif case OP_MAIN_CHANGE_FOLDER: case OP_MAIN_NEXT_UNREAD_MAILBOX: -@@ -1185,7 +1196,11 @@ int mutt_index_menu (void) +@@ -1181,6 +1221,14 @@ { mutt_buffy (buf, sizeof (buf)); -- if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1) -+ if ( op == OP_SIDEBAR_OPEN ) { -+ if(!CurBuffy) -+ break; -+ strncpy( buf, CurBuffy->path, sizeof(buf) ); -+ } else if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1) ++#ifdef USE_SIDEBAR ++ if (op == OP_SIDEBAR_OPEN) { ++ const char *path = mutt_sb_get_highlight(); ++ if (!path) ++ break; ++ strncpy (buf, path, sizeof (buf)); ++ } else ++#endif + if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1) { if (menu->menu == MENU_PAGER) - { -@@ -1203,6 +1218,7 @@ int mutt_index_menu (void) +@@ -1199,6 +1247,9 @@ } mutt_expand_path (buf, sizeof (buf)); -+ set_curbuffy(buf); ++#ifdef USE_SIDEBAR ++ mutt_sb_set_open_buffy (buf); ++#endif if (mx_get_magic (buf) <= 0) { mutt_error (_("%s is not a mailbox."), buf); -@@ -2306,6 +2322,12 @@ int mutt_index_menu (void) +@@ -2310,6 +2361,21 @@ mutt_what_key(); break; -+ case OP_SIDEBAR_SCROLL_UP: -+ case OP_SIDEBAR_SCROLL_DOWN: ++#ifdef USE_SIDEBAR + case OP_SIDEBAR_NEXT: ++ case OP_SIDEBAR_NEXT_NEW: ++ case OP_SIDEBAR_PAGE_DOWN: ++ case OP_SIDEBAR_PAGE_UP: + case OP_SIDEBAR_PREV: -+ scroll_sidebar(op, menu->menu); ++ case OP_SIDEBAR_PREV_NEW: ++ mutt_sb_change_mailbox (op); + break; ++ ++ case OP_SIDEBAR_TOGGLE_VISIBLE: ++ toggle_option (OPTSIDEBAR); ++ menu->redraw = REDRAW_FULL; ++ break; ++#endif default: if (menu->menu == MENU_MAIN) km_error_key (MENU_MAIN); -diff --git a/flags.c b/flags.c -index 133fa35..48fb287 100644 ---- a/flags.c -+++ b/flags.c -@@ -22,8 +22,10 @@ +diff -urN mutt-1.6.1/doc/manual.xml.head mutt-1.6.1-sidebar/doc/manual.xml.head +--- mutt-1.6.1/doc/manual.xml.head 2016-06-12 18:43:00.402447590 +0100 ++++ mutt-1.6.1-sidebar/doc/manual.xml.head 2016-06-12 18:43:03.955502998 +0100 +@@ -405,6 +405,623 @@ + + + ++ ++ Sidebar ++ ++ The Sidebar shows a list of all your mailboxes. The list can be ++ turned on and off, it can be themed and the list style can be ++ configured. ++ ++ ++ This part of the manual is suitable for beginners. ++ If you already know Mutt you could skip ahead to the main ++ Sidebar guide. ++ If you just want to get started, you could use the sample ++ Sidebar muttrc. ++ ++ ++ This version of Sidebar is based on Terry Chan's ++ 2015-11-11 release. ++ It contains many ++ new features, ++ lots of ++ bugfixes ++ and a generous helping of ++ new documentation which you are already reading. ++ ++ ++ To check if Mutt supports Sidebar, look for the string ++ +USE_SIDEBAR in the mutt version. ++ ++ ++mutt -v ++ ++ ++ Let's turn on the Sidebar: ++ ++ set sidebar_visible ++ ++ You will see something like this. ++ A list of mailboxes on the left. ++ A list of emails, from the selected mailbox, on the right. ++ ++ ++Fruit [1] 3/8| 1 + Jan 24 Rhys Lee (192) Yew ++Animals [1] 2/6| 2 + Feb 11 Grace Hall (167) Ilama ++Cars 4| 3 Feb 23 Aimee Scott (450) Nectarine ++Seas 1/7| 4 ! Feb 28 Summer Jackson (264) Lemon ++ | 5 Mar 07 Callum Harrison (464) Raspberry ++ | 6 N + Mar 24 Samuel Harris (353) Tangerine ++ | 7 N + Sep 05 Sofia Graham (335) Cherry ++ | 8 N Sep 16 Ewan Brown (105) Ugli ++ | ++ | ++ ++ ++ This user has four mailboxes: Fruit, ++ Cars, Animals and ++ Seas. ++ ++ ++ The current, open, mailbox is Fruit. We can ++ also see information about the other mailboxes. For example: ++ The Animals mailbox contains, 1 flagged email, 2 ++ new emails out of a total of 6 emails. ++ ++ ++ Navigation ++ ++ The Sidebar adds some new functions ++ to Mutt. ++ ++ ++ The user pressed the c key to ++ <change-folder> to the ++ Animals mailbox. The Sidebar automatically ++ updated the indicator to match. ++ ++ ++Fruit [1] 3/8| 1 Jan 03 Tia Gibson (362) Caiman ++Animals [1] 2/6| 2 + Jan 22 Rhys Lee ( 48) Dolphin ++Cars 4| 3 ! Aug 16 Ewan Brown (333) Hummingbird ++Seas 1/7| 4 Sep 25 Grace Hall ( 27) Capybara ++ | 5 N + Nov 12 Evelyn Rogers (453) Tapir ++ | 6 N + Nov 16 Callum Harrison (498) Hedgehog ++ | ++ | ++ | ++ | ++ ++ ++ Let's map some functions: ++ ++ ++bind index,pager \CP sidebar-prev # Ctrl-Shift-P - Previous Mailbox ++bind index,pager \CN sidebar-next # Ctrl-Shift-N - Next Mailbox ++bind index,pager \CO sidebar-open # Ctrl-Shift-O - Open Highlighted Mailbox ++ ++ ++ Press Ctrl-Shift-N (Next mailbox) twice will ++ move the Sidebar highlight to ++ down to the Seas mailbox. ++ ++ ++Fruit [1] 3/8| 1 Jan 03 Tia Gibson (362) Caiman ++Animals [1] 2/6| 2 + Jan 22 Rhys Lee ( 48) Dolphin ++Cars 4| 3 ! Aug 16 Ewan Brown (333) Hummingbird ++Seas 1/7| 4 Sep 25 Grace Hall ( 27) Capybara ++ | 5 N + Nov 12 Evelyn Rogers (453) Tapir ++ | 6 N + Nov 16 Callum Harrison (498) Hedgehog ++ | ++ | ++ | ++ | ++ ++ ++ Functions <sidebar-next> and ++ <sidebar-prev> move the Sidebar ++ highlight. ++ They do not change the open ++ mailbox. ++ ++ ++ Press Ctrl-Shift-O ++ (<sidebar-open>) ++ to open the highlighted mailbox. ++ ++ ++Fruit [1] 3/8| 1 ! Mar 07 Finley Jones (139) Molucca Sea ++Animals [1] 2/6| 2 + Mar 24 Summer Jackson ( 25) Arafura Sea ++Cars 4| 3 + Feb 28 Imogen Baker (193) Pechora Sea ++Seas 1/7| 4 N + Feb 23 Isla Hussain (348) Balearic Sea ++ | ++ | ++ | ++ | ++ | ++ | ++ ++ ++ ++ Features ++ ++ The Sidebar shows a list of mailboxes in a panel. ++ ++ ++ Everything about the Sidebar can be configured. ++ ++ ++ <link linkend="intro-sidebar-basics">State of the Sidebar</link> ++ Visibility ++ Width ++ ++ ++ <link linkend="intro-sidebar-limit">Which mailboxes are displayed</link> ++ Display all ++ Limit to mailboxes with new mail ++ Whitelist mailboxes to display always ++ ++ ++ <link linkend="sidebar-sort">The order in which mailboxes are displayed</link> ++ ++ Unsorted (order of mailboxes commands) ++ Sorted alphabetically ++ Sorted by number of new mails ++ ++ ++ <link linkend="intro-sidebar-colors">Color</link> ++ Sidebar indicators and divider ++ Mailboxes depending on their type ++ Mailboxes depending on their contents ++ ++ ++ <link linkend="sidebar-functions">Key bindings</link> ++ Hide/Unhide the Sidebar ++ Select previous/next mailbox ++ Select previous/next mailbox with new mail ++ Page up/down through a list of mailboxes ++ ++ ++ Misc ++ Formatting string for mailbox ++ Wraparound searching ++ Flexible mailbox abbreviations ++ Support for Unicode mailbox names (utf-8) ++ ++ ++ ++ Display ++ ++ Everything about the Sidebar can be configured. ++ ++ ++ For a quick reference: ++ Sidebar variables to set ++ Sidebar colors to apply ++ Sidebar sort methods ++ ++ ++ Sidebar Basics ++ ++ The most important variable is $sidebar_visible. ++ You can set this in your muttrc, or bind a key to the ++ function <sidebar-toggle-visible>. ++ ++ ++set sidebar_visible # Make the Sidebar visible by default ++bind index,pager B sidebar-toggle-visible # Use 'B' to switch the Sidebar on and off ++ ++ ++ Next, decide how wide you want the Sidebar to be. 25 ++ characters might be enough for the mailbox name and some numbers. ++ Remember, you can hide/show the Sidebar at the press of button. ++ ++ ++ Finally, you might want to change the divider character. ++ By default, Sidebar draws an ASCII line between it and the Index panel ++ If your terminal supports it, you can use a Unicode line-drawing character. ++ ++ ++set sidebar_width = 25 # Plenty of space ++set sidebar_divider_char = '│' # Pretty line-drawing character ++ ++ ++ ++ Sidebar Format String ++ ++ $sidebar_format allows you to customize the Sidebar display. ++ For an introduction, read format strings ++ including the section about conditionals. ++ ++ ++ The default value is %B%?F? [%F]?%* %?N?%N/?%S ++ ++ ++ Which breaks down as: ++ %B - Mailbox name ++ %?F? [%F]? - If flagged emails [%F], otherwise nothing ++ %* - Pad with spaces ++ %?N?%N/? - If new emails %N/, otherwise nothing ++ %S - Total number of emails ++ ++ ++ sidebar_format ++ ++ ++ ++ Format ++ Notes ++ Description ++ ++ ++ ++ ++ %B ++ ++ Name of the mailbox ++ ++ ++ %S ++ * ++ Size of mailbox (total number of messages) ++ ++ ++ %N ++ * ++ Number of New messages in the mailbox ++ ++ ++ %F ++ * ++ Number of Flagged messages in the mailbox ++ ++ ++ %! ++ ++ ++ !: one flagged message; ++ !!: two flagged messages; ++ n!: n flagged messages (for n > 2). ++ Otherwise prints nothing. ++ ++ ++ ++ %d ++ * ‡ ++ Number of deleted messages ++ ++ ++ %L ++ * ‡ ++ Number of messages after limiting ++ ++ ++ %t ++ * ‡ ++ Number of tagged messages ++ ++ ++ %>X ++ ++ Right justify the rest of the string and pad with X ++ ++ ++ %|X ++ ++ Pad to the end of the line with ++ X ++ ++ ++ %*X ++ ++ Soft-fill with character Xas pad ++ ++ ++ ++
++ ++ * = Can be optionally printed if nonzero ++ ++ ++ ‡ = Only applicable to the current folder ++ ++ ++ Here are some examples. ++ They show the number of (F)lagged, (N)ew and (S)ize. ++ ++ ++ sidebar_format ++ ++ ++ ++ Format ++ Example ++ ++ ++ ++ ++ %B%?F? [%F]?%* %?N?%N/?%S ++ mailbox [F] N/S ++ ++ ++ %B%* %F:%N:%S ++ mailbox F:N:S ++ ++ ++ %B %?N?(%N)?%* %S ++ mailbox (N) S ++ ++ ++ %B%* ?F?%F/?%N ++ mailbox F/S ++ ++ ++ ++
++
++ ++ Abbreviating Mailbox Names ++ ++ $sidebar_delim_chars tells Sidebar ++ how to split up mailbox paths. For local directories ++ use /; for IMAP folders use . ++ ++ ++ Example 1 ++ ++ This example works well if your mailboxes have unique names ++ after the last separator. ++ ++ ++ Add some mailboxes of diffent depths. ++ ++ ++set folder="~/mail" ++mailboxes =fruit/apple =fruit/banana =fruit/cherry ++mailboxes =water/sea/sicily =water/sea/archipelago =water/sea/sibuyan ++mailboxes =water/ocean/atlantic =water/ocean/pacific =water/ocean/arctic ++ ++ ++ Shorten the names: ++ ++ ++set sidebar_short_path # Shorten mailbox names ++set sidebar_delim_chars="/" # Delete everything up to the last / character ++ ++ ++ The screenshot below shows what the Sidebar would look like ++ before and after shortening. ++ ++ ++|fruit/apple |apple ++|fruit/banana |banana ++|fruit/cherry |cherry ++|water/sea/sicily |sicily ++|water/sea/archipelago |archipelago ++|water/sea/sibuyan |sibuyan ++|water/ocean/atlantic |atlantic ++|water/ocean/pacific |pacific ++|water/ocean/arctic |arctic ++ ++ ++ ++ Example 2 ++ ++ This example works well if you have lots of mailboxes which are arranged ++ in a tree. ++ ++ ++ Add some mailboxes of diffent depths. ++ ++ ++set folder="~/mail" ++mailboxes =fruit ++mailboxes =fruit/apple =fruit/banana =fruit/cherry ++mailboxes =water ++mailboxes =water/sea ++mailboxes =water/sea/sicily =water/sea/archipelago =water/sea/sibuyan ++mailboxes =water/ocean ++mailboxes =water/ocean/atlantic =water/ocean/pacific =water/ocean/arctic ++ ++ ++ Shorten the names: ++ ++ ++set sidebar_short_path # Shorten mailbox names ++set sidebar_delim_chars="/" # Delete everything up to the last / character ++set sidebar_folder_indent # Indent folders whose names we've shortened ++set sidebar_indent_string=" " # Indent with two spaces ++ ++ ++ The screenshot below shows what the Sidebar would look like ++ before and after shortening. ++ ++ ++|fruit |fruit ++|fruit/apple | apple ++|fruit/banana | banana ++|fruit/cherry | cherry ++|water |water ++|water/sea | sea ++|water/sea/sicily | sicily ++|water/sea/archipelago | archipelago ++|water/sea/sibuyan | sibuyan ++|water/ocean | ocean ++|water/ocean/atlantic | atlantic ++|water/ocean/pacific | pacific ++|water/ocean/arctic | arctic ++ ++ ++ Sometimes, it will be necessary to add mailboxes, that you ++ don't use, to fill in part of the tree. This will trade ++ vertical space for horizonal space (but it looks good). ++ ++ ++ ++ ++ Limiting the Number of Mailboxes ++ ++ If you have a lot of mailboxes, sometimes it can be useful to hide ++ the ones you aren't using. $sidebar_new_mail_only ++ tells Sidebar to only show mailboxes that contain new, or flagged, email. ++ ++ ++ If you want some mailboxes to be always visible, then use the ++ sidebar_whitelist command. It takes a list of ++ mailboxes as parameters. ++ ++ ++set sidebar_new_mail_only # Only mailboxes with new/flagged email ++sidebar_whitelist fruit fruit/apple # Always display these two mailboxes ++ ++ ++
++ ++ Colors ++ ++ Here is a sample color scheme: ++ ++ ++color sidebar_indicator default color17 # Dark blue background ++color sidebar_highlight white color238 # Grey background ++color sidebar_spoolfile yellow default # Yellow ++color sidebar_new green default # Green ++color sidebar_flagged red default # Red ++color sidebar_divider color8 default # Dark grey ++ ++ ++ There is a priority order when coloring Sidebar mailboxes. ++ e.g. If a mailbox has new mail it will have the ++ sidebar_new color, even if it also contains ++ flagged mails. ++ ++ ++ Sidebar Color Priority ++ ++ ++ ++ Priority ++ Color ++ Description ++ ++ ++ ++ ++ Highest ++ sidebar_indicator ++ Mailbox is open ++ ++ ++ ++ sidebar_highlight ++ Mailbox is highlighed ++ ++ ++ ++ sidebar_spoolfile ++ Mailbox is the spoolfile (receives incoming mail) ++ ++ ++ ++ sidebar_new ++ Mailbox contains new mail ++ ++ ++ ++ sidebar_flagged ++ Mailbox contains flagged mail ++ ++ ++ Lowest ++ (None) ++ Mailbox does not match above ++ ++ ++ ++
++
++ ++ Bug-fixes ++ ++ If you haven't used Sidebar before, you can ignore this section. ++ ++ ++ These bugs have been fixed since the previous Sidebar release: 2015-11-11. ++ ++ ++ Fix bug when starting in compose mode ++ Fix bug with empty sidebar_divider_char string ++ Fix bug with header wrapping ++ Correctly handle utf8 character sequences ++ Fix a bug in mh_buffy_update ++ Fix refresh -- time overflowed short ++ Protect against empty format strings ++ Limit Sidebar width to COLS ++ Handle unmailboxes * safely ++ Refresh Sidebar after timeout ++ ++ ++ ++ Config Changes ++ ++ If you haven't used Sidebar before, you can ignore this section. ++ ++ ++ Some of the Sidebar config has been changed to make its meaning clearer. ++ These changes have been made since the previous Sidebar release: 2015-11-11. ++ ++ ++ Config Changes ++ ++ ++ ++ Old Name ++ New Name ++ ++ ++ ++ ++ $sidebar_delim ++ $sidebar_divider_char ++ ++ ++ $sidebar_folderindent ++ $sidebar_folder_indent ++ ++ ++ $sidebar_indentstr ++ $sidebar_indent_string ++ ++ ++ $sidebar_newmail_only ++ $sidebar_new_mail_only ++ ++ ++ $sidebar_refresh ++ $sidebar_refresh_time ++ ++ ++ $sidebar_shortpath ++ $sidebar_short_path ++ ++ ++ $sidebar_sort ++ $sidebar_sort_method ++ ++ ++ <sidebar-scroll-down> ++ <sidebar-page-down> ++ ++ ++ <sidebar-scroll-up> ++ <sidebar-page-up> ++ ++ ++ ++
++
++
++ + + Help + +@@ -6773,6 +7390,17 @@ + + + ++Mutt will set the COLUMNS environment variable to ++the width of the pager. Some programs make use of this environment ++variable automatically. Others provide a command line argument that ++can use this to set the output width: ++ ++ ++ ++text/html; lynx -dump -width ${COLUMNS:-80} %s; copiousoutput ++ ++ ++ + Note that when using the built-in pager, only + entries with this flag will be considered a handler for a MIME type + — all other entries will be ignored. +@@ -7467,6 +8095,16 @@ + + + ++ ++Mutt Patches ++ ++Mutt may also be patched to support smaller features. ++These patches should add a free-form string to the end Mutt's version string. ++Running mutt -v might show: ++patch-1.6.1.sidebar.20160502 ++ ++ ++ + + URL Syntax + +@@ -8081,6 +8719,469 @@ + + + ++ ++ Sidebar Patch ++ Overview of mailboxes ++ ++ ++ Patch ++ ++ ++ To check if Mutt supports Sidebar, look for ++ +USE_SIDEBAR in the mutt version. ++ See: . ++ ++ ++ ++ Dependencies: ++ mutt-1.6.1 ++ ++ ++ This patch is part of the NeoMutt Project. ++ ++ ++ ++ Introduction ++ ++ ++ The Sidebar shows a list of all your mailboxes. The list can be ++ turned on and off, it can be themed and the list style can be ++ configured. ++ ++ ++ ++ This part of the manual is a reference guide. ++ If you want a simple introduction with examples see the ++ Sidebar Howto. ++ If you just want to get started, you could use the sample ++ Sidebar muttrc. ++ ++ ++ ++ This version of Sidebar is based on Terry Chan's ++ 2015-11-11 release. ++ It contains many ++ new features, ++ lots of ++ bugfixes. ++ ++ ++ ++ ++ Variables ++ ++ ++ Sidebar Variables ++ ++ ++ ++ Name ++ Type ++ Default ++ ++ ++ ++ ++ sidebar_delim_chars ++ string ++ /. ++ ++ ++ sidebar_divider_char ++ string ++ | ++ ++ ++ sidebar_folder_indent ++ boolean ++ no ++ ++ ++ sidebar_format ++ string ++ %B%?F? [%F]?%* %?N?%N/?%S ++ ++ ++ sidebar_indent_string ++ string ++    (two spaces) ++ ++ ++ sidebar_new_mail_only ++ boolean ++ no ++ ++ ++ sidebar_next_new_wrap ++ boolean ++ no ++ ++ ++ sidebar_refresh_time ++ number ++ 60 ++ ++ ++ sidebar_short_path ++ boolean ++ no ++ ++ ++ sidebar_sort_method ++ enum ++ SORT_ORDER ++ ++ ++ sidebar_visible ++ boolean ++ no ++ ++ ++ sidebar_whitelist ++ list ++ (empty) ++ ++ ++ sidebar_width ++ number ++ 20 ++ ++ ++ ++
++
++ ++ ++ Functions ++ ++ ++ Sidebar adds the following functions to Mutt. ++ By default, none of them are bound to keys. ++ ++ ++ ++ Sidebar Functions ++ ++ ++ ++ Menus ++ Function ++ Description ++ ++ ++ ++ ++ index,pager ++ <sidebar-next> ++ Move the highlight to next mailbox ++ ++ ++ index,pager ++ <sidebar-next-new> ++ Move the highlight to next mailbox with new mail ++ ++ ++ index,pager ++ <sidebar-open> ++ Open highlighted mailbox ++ ++ ++ index,pager ++ <sidebar-page-down> ++ Scroll the Sidebar down 1 page ++ ++ ++ index,pager ++ <sidebar-page-up> ++ Scroll the Sidebar up 1 page ++ ++ ++ index,pager ++ <sidebar-prev> ++ Move the highlight to previous mailbox ++ ++ ++ index,pager ++ <sidebar-prev-new> ++ Move the highlight to previous mailbox with new mail ++ ++ ++ index,pager ++ <sidebar-toggle-visible> ++ Make the Sidebar (in)visible ++ ++ ++ ++
++
++ ++ ++ Commands ++ ++ sidebar_whitelist ++ ++ mailbox ++ ++ ++ mailbox ++ ++ ++ ++ ++ ++ Colors ++ ++ ++ Sidebar Colors ++ ++ ++ ++ Name ++ Default Color ++ Description ++ ++ ++ ++ ++ sidebar_divider ++ default ++ The dividing line between the Sidebar and the Index/Pager panels ++ ++ ++ sidebar_flagged ++ default ++ Mailboxes containing flagged mail ++ ++ ++ sidebar_highlight ++ underline ++ Cursor to select a mailbox ++ ++ ++ sidebar_indicator ++ mutt indicator ++ The mailbox open in the Index panel ++ ++ ++ sidebar_new ++ default ++ Mailboxes containing new mail ++ ++ ++ sidebar_spoolfile ++ default ++ Mailbox that receives incoming mail ++ ++ ++ ++
++ ++ If the sidebar_indicator color isn't set, then the default Mutt ++ indicator color will be used (the color used in the index panel). ++
++ ++ ++ Sort ++ ++ ++ Sidebar Sort ++ ++ ++ ++ Sort ++ Description ++ ++ ++ ++ ++ alpha ++ Alphabetically by path ++ ++ ++ count ++ Total number of messages ++ ++ ++ flagged ++ Number of flagged messages ++ ++ ++ name ++ Alphabetically by path ++ ++ ++ new ++ Number of new messages ++ ++ ++ path ++ Alphabetically by path ++ ++ ++ unsorted ++ Do not resort the paths ++ ++ ++ ++
++
++ ++ ++ Muttrc ++ ++# This is a complete list of sidebar-related configuration. ++ ++# -------------------------------------------------------------------------- ++# VARIABLES - shown with their default values ++# -------------------------------------------------------------------------- ++ ++# Should the Sidebar be shown? ++set sidebar_visible = no ++ ++# How wide should the Sidebar be in screen columns? ++# Note: Some characters, e.g. Chinese, take up two columns each. ++set sidebar_width = 20 ++ ++# Should the mailbox paths be abbreviated? ++set sidebar_short_path = no ++ ++# When abbreviating mailbox path names, use any of these characters as path ++# separators. Only the part after the last separators will be shown. ++# For file folders '/' is good. For IMAP folders, often '.' is useful. ++set sidebar_delim_chars = '/.' ++ ++# If the mailbox path is abbreviated, should it be indented? ++set sidebar_folder_indent = no ++ ++# Indent mailbox paths with this string. ++set sidebar_indent_string = ' ' ++ ++# Make the Sidebar only display mailboxes that contain new, or flagged, ++# mail. ++set sidebar_new_mail_only = no ++ ++# Any mailboxes that are whitelisted will always be visible, even if the ++# sidebar_new_mail_only option is enabled. ++sidebar_whitelist '/home/user/mailbox1' ++sidebar_whitelist '/home/user/mailbox2' ++ ++# When searching for mailboxes containing new mail, should the search wrap ++# around when it reaches the end of the list? ++set sidebar_next_new_wrap = no ++ ++# The character to use as the divider between the Sidebar and the other Mutt ++# panels. ++# Note: Only the first character of this string is used. ++set sidebar_divider_char = '|' ++ ++# Display the Sidebar mailboxes using this format string. ++set sidebar_format = '%B%?F? [%F]?%* %?N?%N/?%S' ++ ++# Sidebar will not refresh its list of mailboxes any more frequently than ++# this number of seconds. This will help reduce disk/network traffic. ++set sidebar_refresh_time = 60 ++ ++# Sort the mailboxes in the Sidebar using this method: ++# count - total number of messages ++# flagged - number of flagged messages ++# new - number of new messages ++# path - mailbox path ++# unsorted - do not sort the mailboxes ++set sidebar_sort_method = 'unsorted' ++ ++# -------------------------------------------------------------------------- ++# FUNCTIONS - shown with an example mapping ++# -------------------------------------------------------------------------- ++ ++# Move the highlight to the previous mailbox ++bind index,pager \Cp sidebar-prev ++ ++# Move the highlight to the next mailbox ++bind index,pager \Cn sidebar-next ++ ++# Open the highlighted mailbox ++bind index,pager \Co sidebar-open ++ ++# Move the highlight to the previous page ++# This is useful if you have a LOT of mailboxes. ++bind index,pager <F3> sidebar-page-up ++ ++# Move the highlight to the next page ++# This is useful if you have a LOT of mailboxes. ++bind index,pager <F4> sidebar-page-down ++ ++# Move the highlight to the previous mailbox containing new, or flagged, ++# mail. ++bind index,pager <F5> sidebar-prev-new ++ ++# Move the highlight to the next mailbox containing new, or flagged, mail. ++bind index,pager <F6> sidebar-next-new ++ ++# Toggle the visibility of the Sidebar. ++bind index,pager B sidebar-toggle-visible ++ ++# -------------------------------------------------------------------------- ++# COLORS - some unpleasant examples are given ++# -------------------------------------------------------------------------- ++# Note: All color operations are of the form: ++# color OBJECT FOREGROUND BACKGROUND ++ ++# Color of the current, open, mailbox ++# Note: This is a general Mutt option which colors all selected items. ++color indicator cyan black ++ ++# Color of the highlighted, but not open, mailbox. ++color sidebar_highlight black color8 ++ ++# Color of the divider separating the Sidebar from Mutt panels ++color sidebar_divider color8 black ++ ++# Color to give mailboxes containing flagged mail ++color sidebar_flagged red black ++ ++# Color to give mailboxes containing new mail ++color sidebar_new green black ++ ++# -------------------------------------------------------------------------- ++ ++# vim: syntax=muttrc ++ ++ ++ ++ ++ See Also ++ ++ ++ Regular Expressions ++ Patterns ++ Color command ++ notmuch patch ++ ++ ++ ++ ++ Known Bugs ++ Unsorted isn't ++ ++ ++ ++ Credits ++ ++ Justin Hibbits jrh29@po.cwru.edu ++ Thomer M. Gil mutt@thomer.com ++ David Sterba dsterba@suse.cz ++ Evgeni Golov evgeni@debian.org ++ Fabian Groffen grobian@gentoo.org ++ Jason DeTiberus jdetiber@redhat.com ++ Stefan Assmann sassmann@kpanic.de ++ Steve Kemp steve@steve.org.uk ++ Terry Chan tchan@lunar-linux.org ++ Tyler Earnest tylere@rne.st ++ Richard Russon rich@flatcap.org ++ ++ ++
++ + + + +@@ -9237,6 +10338,17 @@ + + + ++sidebar_whitelist ++ ++item ++ ++ ++command ++ ++ ++ ++ ++ + source + + filename +diff -urN mutt-1.6.1/doc/mutt.css mutt-1.6.1-sidebar/doc/mutt.css +--- mutt-1.6.1/doc/mutt.css 2016-06-12 18:43:00.402447590 +0100 ++++ mutt-1.6.1-sidebar/doc/mutt.css 2016-06-12 18:43:03.811500752 +0100 +@@ -9,17 +9,24 @@ + div.table-contents table th, div.informaltable table th { + font-family:sans-serif; + background:#d0d0d0; +- font-weight:normal; ++ font-weight:bold; + vertical-align:top; + } +-div.cmdsynopsis { border-left:1px solid #707070; padding-left:5px; } ++div.cmdsynopsis { border-left:1px solid #707070; padding-left: 1em; } + li div.cmdsynopsis { border-left:none; padding-left:0px; } +-pre.screen, div.note { background:#f0f0f0; border:1px solid #c0c0c0; padding:5px; margin-left:2%; margin-right:2%; } ++li p { margin: 0; } ++pre.screen, div.note { border:1px solid #c0c0c0; margin-left:2%; margin-right:2%; } ++pre.screen { color: #ffffff; background:#000000; padding: 0.5em; } ++div.note { background:#ffff80; padding: 0.5em; } + div.example p.title { margin-left:2%; } + div.note h3 { font-size:small; font-style:italic; font-variant: small-caps; } + div.note h3:after { content: ":" } + div.note { margin-bottom: 5px; } +-.command { font-family: monospace; font-weight: normal; } ++div.literallayout, .command { font-family: monospace; font-weight: normal; } + .command strong { font-weight: normal; } + tr { vertical-align: top; } +-.comment { color:#707070; } ++.comment { color:#00c000; } ++code.literal { background: #f0f0f0; color: #000000; } ++span.indicator { background: #000060; color: #ffffff; } ++span.highlight { background: #404040; color: #ffffff; } ++span.reverse { background: #ffffff; color: #000000; } +diff -urN mutt-1.6.1/doc/muttrc.sidebar mutt-1.6.1-sidebar/doc/muttrc.sidebar +--- mutt-1.6.1/doc/muttrc.sidebar 1970-01-01 01:00:00.000000000 +0100 ++++ mutt-1.6.1-sidebar/doc/muttrc.sidebar 2016-06-12 18:43:03.812500768 +0100 +@@ -0,0 +1,116 @@ ++# This is a complete list of sidebar-related configuration. ++ ++# -------------------------------------------------------------------------- ++# VARIABLES - shown with their default values ++# -------------------------------------------------------------------------- ++ ++# Should the Sidebar be shown? ++set sidebar_visible = no ++ ++# How wide should the Sidebar be in screen columns? ++# Note: Some characters, e.g. Chinese, take up two columns each. ++set sidebar_width = 20 ++ ++# Should the mailbox paths be abbreviated? ++set sidebar_short_path = no ++ ++# When abbreviating mailbox path names, use any of these characters as path ++# separators. Only the part after the last separators will be shown. ++# For file folders '/' is good. For IMAP folders, often '.' is useful. ++set sidebar_delim_chars = '/.' ++ ++# If the mailbox path is abbreviated, should it be indented? ++set sidebar_folder_indent = no ++ ++# Indent mailbox paths with this string. ++set sidebar_indent_string = ' ' ++ ++# Make the Sidebar only display mailboxes that contain new, or flagged, ++# mail. ++set sidebar_new_mail_only = no ++ ++# Any mailboxes that are whitelisted will always be visible, even if the ++# sidebar_new_mail_only option is enabled. ++sidebar_whitelist '/home/user/mailbox1' ++sidebar_whitelist '/home/user/mailbox2' ++ ++# When searching for mailboxes containing new mail, should the search wrap ++# around when it reaches the end of the list? ++set sidebar_next_new_wrap = no ++ ++# The character to use as the divider between the Sidebar and the other Mutt ++# panels. ++# Note: Only the first character of this string is used. ++set sidebar_divider_char = '|' ++ ++# Display the Sidebar mailboxes using this format string. ++set sidebar_format = '%B%?F? [%F]?%* %?N?%N/?%S' ++ ++# Sidebar will not refresh its list of mailboxes any more frequently than ++# this number of seconds. This will help reduce disk/network traffic. ++set sidebar_refresh_time = 60 ++ ++# Sort the mailboxes in the Sidebar using this method: ++# count - total number of messages ++# flagged - number of flagged messages ++# new - number of new messages ++# path - mailbox path ++# unsorted - do not sort the mailboxes ++set sidebar_sort_method = 'unsorted' ++ ++# -------------------------------------------------------------------------- ++# FUNCTIONS - shown with an example mapping ++# -------------------------------------------------------------------------- ++ ++# Move the highlight to the previous mailbox ++bind index,pager \Cp sidebar-prev ++ ++# Move the highlight to the next mailbox ++bind index,pager \Cn sidebar-next ++ ++# Open the highlighted mailbox ++bind index,pager \Co sidebar-open ++ ++# Move the highlight to the previous page ++# This is useful if you have a LOT of mailboxes. ++bind index,pager sidebar-page-up ++ ++# Move the highlight to the next page ++# This is useful if you have a LOT of mailboxes. ++bind index,pager sidebar-page-down ++ ++# Move the highlight to the previous mailbox containing new, or flagged, ++# mail. ++bind index,pager sidebar-prev-new ++ ++# Move the highlight to the next mailbox containing new, or flagged, mail. ++bind index,pager sidebar-next-new ++ ++# Toggle the visibility of the Sidebar. ++bind index,pager B sidebar-toggle-visible ++ ++# -------------------------------------------------------------------------- ++# COLORS - some unpleasant examples are given ++# -------------------------------------------------------------------------- ++# Note: All color operations are of the form: ++# color OBJECT FOREGROUND BACKGROUND ++ ++# Color of the current, open, mailbox ++# Note: This is a general Mutt option which colors all selected items. ++color indicator cyan black ++ ++# Color of the highlighted, but not open, mailbox. ++color sidebar_highlight black color8 ++ ++# Color of the divider separating the Sidebar from Mutt panels ++color sidebar_divider color8 black ++ ++# Color to give mailboxes containing flagged mail ++color sidebar_flagged red black ++ ++# Color to give mailboxes containing new mail ++color sidebar_new green black ++ ++# -------------------------------------------------------------------------- ++ ++# vim: syntax=muttrc +diff -urN mutt-1.6.1/doc/vimrc.sidebar mutt-1.6.1-sidebar/doc/vimrc.sidebar +--- mutt-1.6.1/doc/vimrc.sidebar 1970-01-01 01:00:00.000000000 +0100 ++++ mutt-1.6.1-sidebar/doc/vimrc.sidebar 2016-06-12 18:43:03.813500783 +0100 +@@ -0,0 +1,35 @@ ++" Vim syntax file for the mutt sidebar patch ++ ++syntax keyword muttrcVarBool skipwhite contained sidebar_folder_indent nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr ++syntax keyword muttrcVarBool skipwhite contained sidebar_new_mail_only nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr ++syntax keyword muttrcVarBool skipwhite contained sidebar_next_new_wrap nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr ++syntax keyword muttrcVarBool skipwhite contained sidebar_short_path nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr ++syntax keyword muttrcVarBool skipwhite contained sidebar_visible nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr ++ ++syntax keyword muttrcVarNum skipwhite contained sidebar_refresh_time nextgroup=muttrcSetNumAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr ++syntax keyword muttrcVarNum skipwhite contained sidebar_width nextgroup=muttrcSetNumAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr ++ ++syntax keyword muttrcVarStr contained skipwhite sidebar_divider_char nextgroup=muttrcVarEqualsIdxFmt ++syntax keyword muttrcVarStr contained skipwhite sidebar_delim_chars nextgroup=muttrcVarEqualsIdxFmt ++syntax keyword muttrcVarStr contained skipwhite sidebar_format nextgroup=muttrcVarEqualsIdxFmt ++syntax keyword muttrcVarStr contained skipwhite sidebar_indent_string nextgroup=muttrcVarEqualsIdxFmt ++syntax keyword muttrcVarStr contained skipwhite sidebar_sort_method nextgroup=muttrcVarEqualsIdxFmt ++ ++syntax keyword muttrcCommand sidebar_whitelist ++ ++syntax match muttrcFunction contained "\" ++syntax match muttrcFunction contained "\" ++syntax match muttrcFunction contained "\" ++syntax match muttrcFunction contained "\" ++syntax match muttrcFunction contained "\" ++syntax match muttrcFunction contained "\" ++syntax match muttrcFunction contained "\" ++syntax match muttrcFunction contained "\" ++ ++syntax keyword muttrcColorField contained sidebar_divider ++syntax keyword muttrcColorField contained sidebar_flagged ++syntax keyword muttrcColorField contained sidebar_highlight ++syntax keyword muttrcColorField contained sidebar_indicator ++syntax keyword muttrcColorField contained sidebar_new ++ ++" vim: syntax=vim +diff -urN mutt-1.6.1/filter.c mutt-1.6.1-sidebar/filter.c +--- mutt-1.6.1/filter.c 2016-06-12 18:43:00.403447606 +0100 ++++ mutt-1.6.1-sidebar/filter.c 2016-06-12 18:43:03.835501127 +0100 +@@ -21,6 +21,7 @@ + #endif #include "mutt.h" - #include "mutt_curses.h" -+#include "mutt_menu.h" ++#include "mutt_curses.h" + + #include + #include +@@ -34,6 +35,7 @@ + int fdin, int fdout, int fderr) + { + int pin[2], pout[2], perr[2], thepid; ++ char columns[11]; + + if (in) + { +@@ -117,6 +119,9 @@ + close (fderr); + } + ++ snprintf (columns, sizeof (columns), "%d", COLS - SidebarWidth); ++ setenv ("COLUMNS", columns, 1); ++ + execl (EXECSHELL, "sh", "-c", cmd, NULL); + _exit (127); + } +diff -urN mutt-1.6.1/flags.c mutt-1.6.1-sidebar/flags.c +--- mutt-1.6.1/flags.c 2016-06-12 18:43:00.403447606 +0100 ++++ mutt-1.6.1-sidebar/flags.c 2016-06-12 18:43:03.956503013 +0100 +@@ -25,6 +25,10 @@ #include "sort.h" #include "mx.h" -+#include "sidebar.h" ++#ifdef USE_SIDEBAR ++#include "sidebar.h" ++#endif ++ void _mutt_set_flag (CONTEXT *ctx, HEADER *h, int flag, int bf, int upd_ctx) { -@@ -290,6 +292,7 @@ void _mutt_set_flag (CONTEXT *ctx, HEADER *h, int flag, int bf, int upd_ctx) + int changed = h->changed; +@@ -263,6 +267,9 @@ */ if (h->searched && (changed != h->changed || deleted != ctx->deleted || tagged != ctx->tagged || flagged != ctx->flagged)) h->searched = 0; -+ draw_sidebar(0); ++#ifdef USE_SIDEBAR ++ mutt_sb_draw(); ++#endif } void mutt_tag_set_flag (int flag, int bf) -diff --git a/functions.h b/functions.h -index 26171a0..ef8937a 100644 ---- a/functions.h -+++ b/functions.h -@@ -170,6 +170,11 @@ const struct binding_t OpMain[] = { /* map: index */ +diff -urN mutt-1.6.1/functions.h mutt-1.6.1-sidebar/functions.h +--- mutt-1.6.1/functions.h 2016-06-12 18:43:00.403447606 +0100 ++++ mutt-1.6.1-sidebar/functions.h 2016-06-12 18:43:03.956503013 +0100 +@@ -168,6 +168,16 @@ + { "decrypt-copy", OP_DECRYPT_COPY, NULL }, { "decrypt-save", OP_DECRYPT_SAVE, NULL }, ++#ifdef USE_SIDEBAR ++ { "sidebar-next", OP_SIDEBAR_NEXT, NULL }, ++ { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL }, ++ { "sidebar-open", OP_SIDEBAR_OPEN, NULL }, ++ { "sidebar-page-down", OP_SIDEBAR_PAGE_DOWN, NULL }, ++ { "sidebar-page-up", OP_SIDEBAR_PAGE_UP, NULL }, ++ { "sidebar-prev", OP_SIDEBAR_PREV, NULL }, ++ { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL }, ++ { "sidebar-toggle-visible", OP_SIDEBAR_TOGGLE_VISIBLE, NULL }, ++#endif -+ { "sidebar-scroll-up", OP_SIDEBAR_SCROLL_UP, NULL }, -+ { "sidebar-scroll-down", OP_SIDEBAR_SCROLL_DOWN, NULL }, -+ { "sidebar-next", OP_SIDEBAR_NEXT, NULL }, -+ { "sidebar-prev", OP_SIDEBAR_PREV, NULL }, -+ { "sidebar-open", OP_SIDEBAR_OPEN, NULL }, { NULL, 0, NULL } }; - -@@ -274,6 +279,11 @@ const struct binding_t OpPager[] = { /* map: pager */ +@@ -272,6 +282,17 @@ { "what-key", OP_WHAT_KEY, NULL }, -+ { "sidebar-scroll-up", OP_SIDEBAR_SCROLL_UP, NULL }, -+ { "sidebar-scroll-down", OP_SIDEBAR_SCROLL_DOWN, NULL }, -+ { "sidebar-next", OP_SIDEBAR_NEXT, NULL }, -+ { "sidebar-prev", OP_SIDEBAR_PREV, NULL }, -+ { "sidebar-open", OP_SIDEBAR_OPEN, NULL }, ++#ifdef USE_SIDEBAR ++ { "sidebar-next", OP_SIDEBAR_NEXT, NULL }, ++ { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL }, ++ { "sidebar-open", OP_SIDEBAR_OPEN, NULL }, ++ { "sidebar-page-down", OP_SIDEBAR_PAGE_DOWN, NULL }, ++ { "sidebar-page-up", OP_SIDEBAR_PAGE_UP, NULL }, ++ { "sidebar-prev", OP_SIDEBAR_PREV, NULL }, ++ { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL }, ++ { "sidebar-toggle-visible", OP_SIDEBAR_TOGGLE_VISIBLE, NULL }, ++#endif ++ { NULL, 0, NULL } }; -diff --git a/globals.h b/globals.h -index 282fde3..004c795 100644 ---- a/globals.h -+++ b/globals.h -@@ -118,6 +118,7 @@ WHERE short SearchContext; +diff -urN mutt-1.6.1/globals.h mutt-1.6.1-sidebar/globals.h +--- mutt-1.6.1/globals.h 2016-06-12 18:43:00.403447606 +0100 ++++ mutt-1.6.1-sidebar/globals.h 2016-06-12 18:43:03.956503013 +0100 +@@ -118,6 +118,12 @@ WHERE char *SendCharset; WHERE char *Sendmail; WHERE char *Shell; -+WHERE char *SidebarDelim; ++#ifdef USE_SIDEBAR ++WHERE char *SidebarDelimChars; ++WHERE char *SidebarDividerChar; ++WHERE char *SidebarFormat; ++WHERE char *SidebarIndentString; ++#endif WHERE char *Signature; WHERE char *SimpleSearch; #if USE_SMTP -@@ -214,6 +215,9 @@ WHERE short ScoreThresholdDelete; +@@ -214,6 +220,14 @@ WHERE short ScoreThresholdRead; WHERE short ScoreThresholdFlag; -+WHERE struct buffy_t *CurBuffy INITVAL(0); -+WHERE short DrawFullLine INITVAL(0); ++/* This isn't excluded from the build because it's too entwined in the code. ++ * For now. */ +WHERE short SidebarWidth; ++#ifdef USE_SIDEBAR ++WHERE short SidebarRefreshTime; ++WHERE LIST *SidebarWhitelist INITVAL(0); ++#endif ++ #ifdef USE_IMAP WHERE short ImapKeepalive; WHERE short ImapPipelineDepth; -diff --git a/imap/command.c b/imap/command.c -index 32f8417..d68e3ab 100644 ---- a/imap/command.c -+++ b/imap/command.c -@@ -1012,6 +1012,13 @@ static void cmd_parse_status (IMAP_DATA* idata, char* s) +diff -urN mutt-1.6.1/imap/command.c mutt-1.6.1-sidebar/imap/command.c +--- mutt-1.6.1/imap/command.c 2016-06-12 18:43:00.405447637 +0100 ++++ mutt-1.6.1-sidebar/imap/command.c 2016-06-12 18:43:03.839501189 +0100 +@@ -1016,6 +1016,14 @@ opened */ status->uidnext = oldun; -+ /* Added to make the sidebar show the correct numbers */ -+ if (status->messages) -+ { -+ inc->msgcount = status->messages; -+ inc->msg_unread = status->unseen; -+ } ++#ifdef USE_SIDEBAR ++ /* Make the sidebar show the correct numbers */ ++ if (status->messages) { ++ inc->msg_count = status->messages; ++ inc->msg_unread = status->unseen; ++ } ++#endif + FREE (&value); return; } -diff --git a/imap/imap.c b/imap/imap.c -index f476873..af3ac3d 100644 ---- a/imap/imap.c -+++ b/imap/imap.c -@@ -1529,7 +1529,7 @@ int imap_buffy_check (int force) +diff -urN mutt-1.6.1/imap/imap.c mutt-1.6.1-sidebar/imap/imap.c +--- mutt-1.6.1/imap/imap.c 2016-06-12 18:43:00.405447637 +0100 ++++ mutt-1.6.1-sidebar/imap/imap.c 2016-06-12 18:43:03.958503044 +0100 +@@ -1535,7 +1535,11 @@ - imap_munge_mbox_name (munged, sizeof (munged), name); + imap_munge_mbox_name (idata, munged, sizeof (munged), name); snprintf (command, sizeof (command), -- "STATUS %s (UIDNEXT UIDVALIDITY UNSEEN RECENT)", munged); ++#ifdef USE_SIDEBAR + "STATUS %s (UIDNEXT UIDVALIDITY UNSEEN RECENT MESSAGES)", munged); ++#else + "STATUS %s (UIDNEXT UIDVALIDITY UNSEEN RECENT)", munged); ++#endif if (imap_exec (idata, command, IMAP_CMD_QUEUE) < 0) { -diff --git a/init.h b/init.h -index 35224c1..c664e5f 100644 ---- a/init.h -+++ b/init.h -@@ -2030,6 +2030,27 @@ struct option_t MuttVars[] = { - ** not used. - ** (PGP only) +diff -urN mutt-1.6.1/init.c mutt-1.6.1-sidebar/init.c +--- mutt-1.6.1/init.c 2016-06-12 18:43:00.406447652 +0100 ++++ mutt-1.6.1-sidebar/init.c 2016-06-12 18:43:03.959503060 +0100 +@@ -2173,6 +2173,9 @@ + case DT_SORT_AUX: + map = SortAuxMethods; + break; ++ case DT_SORT_SIDEBAR: ++ map = SortSidebarMethods; ++ break; + default: + map = SortMethods; + break; +diff -urN mutt-1.6.1/init.h mutt-1.6.1-sidebar/init.h +--- mutt-1.6.1/init.h 2016-06-12 18:43:00.408447684 +0100 ++++ mutt-1.6.1-sidebar/init.h 2016-06-12 18:43:03.960503075 +0100 +@@ -42,11 +42,12 @@ + #define DTYPE(x) ((x) & DT_MASK) + + /* subtypes */ +-#define DT_SUBTYPE_MASK 0xf0 ++#define DT_SUBTYPE_MASK 0xff0 + #define DT_SORT_ALIAS 0x10 + #define DT_SORT_BROWSER 0x20 + #define DT_SORT_KEYS 0x40 + #define DT_SORT_AUX 0x80 ++#define DT_SORT_SIDEBAR 0x100 + + /* flags to parse_set() */ + #define M_SET_INV (1<<0) /* default is to invert all vars */ +@@ -2665,6 +2666,147 @@ + ** Command to use when spawning a subshell. By default, the user's login + ** shell from \fC/etc/passwd\fP is used. */ -+ {"sidebar_delim", DT_STR, R_BOTH, UL &SidebarDelim, "|"}, ++#ifdef USE_SIDEBAR ++ { "sidebar_divider_char", DT_STR, R_BOTH, UL &SidebarDividerChar, UL "|" }, + /* + ** .pp -+ ** This specifies the delimiter between the sidebar (if visible) and -+ ** other screens. ++ ** This specifies the characters to be drawn between the sidebar (when ++ ** visible) and the other Mutt panels. ASCII and Unicode line-drawing ++ ** characters are supported. ++ */ ++ { "sidebar_delim_chars", DT_STR, R_NONE, UL &SidebarDelimChars, UL "/." }, ++ /* ++ ** .pp ++ ** This contains the list of characters which you would like to treat ++ ** as folder separators for displaying paths in the sidebar. ++ ** .pp ++ ** Local mail is often arranged in directories: `dir1/dir2/mailbox'. ++ ** .ts ++ ** set sidebar_delim_chars='/' ++ ** .te ++ ** .pp ++ ** IMAP mailboxes are often named: `folder1.folder2.mailbox'. ++ ** .ts ++ ** set sidebar_delim_chars='.' ++ ** .te ++ ** .pp ++ ** \fBSee also:\fP $$sidebar_short_path, $$sidebar_folder_indent, $$sidebar_indent_string. ++ */ ++ { "sidebar_folder_indent", DT_BOOL, R_BOTH, OPTSIDEBARFOLDERINDENT, 0 }, ++ /* ++ ** .pp ++ ** Set this to indent mailboxes in the sidebar. ++ ** .pp ++ ** \fBSee also:\fP $$sidebar_short_path, $$sidebar_indent_string, $$sidebar_delim_chars. ++ */ ++ { "sidebar_format", DT_STR, R_NONE, UL &SidebarFormat, UL "%B%?F? [%F]?%* %?N?%N/?%S" }, ++ /* ++ ** .pp ++ ** This variable allows you to customize the sidebar display. This string is ++ ** similar to $$index_format, but has its own set of \fCprintf(3)\fP-like ++ ** sequences: ++ ** .dl ++ ** .dt %B .dd Name of the mailbox ++ ** .dt %S .dd * Size of mailbox (total number of messages) ++ ** .dt %N .dd * Number of New messages in the mailbox ++ ** .dt %F .dd * Number of Flagged messages in the mailbox ++ ** .dt %! .dd ``!'' : one flagged message; ++ ** ``!!'' : two flagged messages; ++ ** ``n!'' : n flagged messages (for n > 2). ++ ** Otherwise prints nothing. ++ ** .dt %d .dd * @ Number of deleted messages ++ ** .dt %L .dd * @ Number of messages after limiting ++ ** .dt %t .dd * @ Number of tagged messages ++ ** .dt %>X .dd right justify the rest of the string and pad with ``X'' ++ ** .dt %|X .dd pad to the end of the line with ``X'' ++ ** .dt %*X .dd soft-fill with character ``X'' as pad ++ ** .de ++ ** .pp ++ ** * = Can be optionally printed if nonzero ++ ** @ = Only applicable to the current folder ++ */ ++ { "sidebar_indent_string", DT_STR, R_BOTH, UL &SidebarIndentString, UL " " }, ++ /* ++ ** .pp ++ ** This specifies the string that is used to indent mailboxes in the sidebar. ++ ** It defaults to two spaces. ++ ** .pp ++ ** \fBSee also:\fP $$sidebar_short_path, $$sidebar_folder_indent, $$sidebar_delim_chars. ++ */ ++ { "sidebar_new_mail_only", DT_BOOL, R_BOTH, OPTSIDEBARNEWMAILONLY, 0 }, ++ /* ++ ** .pp ++ ** When set, the sidebar will only display mailboxes containing new, or ++ ** flagged, mail. ++ ** .pp ++ ** \fBSee also:\fP $sidebar_whitelist. ++ */ ++ { "sidebar_next_new_wrap", DT_BOOL, R_BOTH, UL OPTSIDEBARNEXTNEWWRAP, 0 }, ++ /* ++ ** .pp ++ ** When set, the \fC\fP command will not stop and the end of ++ ** the list of mailboxes, but wrap around to the beginning. The ++ ** \fC\fP command is similarly affected, wrapping around to ++ ** the end of the list. ++ */ ++ { "sidebar_refresh_time", DT_NUM, R_BOTH, UL &SidebarRefreshTime, 60 }, ++ /* ++ ** .pp ++ ** Set sidebar_refresh_time to the minimum number of seconds between refreshes. ++ ** This will reduce network traffic. ++ ** .pp ++ ** \fBNote:\fP Set to 0 to disable refreshing. ++ */ ++ { "sidebar_short_path", DT_BOOL, R_BOTH, OPTSIDEBARSHORTPATH, 0 }, ++ /* ++ ** .pp ++ ** By default the sidebar will show the mailbox's path, relative to the ++ ** $$folder variable. Setting \fCsidebar_shortpath=yes\fP will shorten the ++ ** names relative to the previous name. Here's an example: ++ ** .dl ++ ** .dt \fBshortpath=no\fP .dd \fBshortpath=yes\fP .dd \fBshortpath=yes, folderindent=yes, indentstr=".."\fP ++ ** .dt \fCfruit\fP .dd \fCfruit\fP .dd \fCfruit\fP ++ ** .dt \fCfruit.apple\fP .dd \fCapple\fP .dd \fC..apple\fP ++ ** .dt \fCfruit.banana\fP .dd \fCbanana\fP .dd \fC..banana\fP ++ ** .dt \fCfruit.cherry\fP .dd \fCcherry\fP .dd \fC..cherry\fP ++ ** .de ++ ** .pp ++ ** \fBSee also:\fP $$sidebar_delim_chars, $$sidebar_folder_indent, $$sidebar_indent_string. ++ */ ++ { "sidebar_sort_method", DT_SORT|DT_SORT_SIDEBAR, R_NONE, UL &SidebarSortMethod, SORT_ORDER }, ++ /* ++ ** .pp ++ ** Specifies how to sort entries in the file browser. By default, the ++ ** entries are sorted alphabetically. Valid values: ++ ** .il ++ ** .dd alpha (alphabetically) ++ ** .dd count (all message count) ++ ** .dd date ++ ** .dd desc (description) ++ ** .dd new (new message count) ++ ** .dd size ++ ** .dd unsorted ++ ** .ie ++ ** .pp ++ ** You may optionally use the ``reverse-'' prefix to specify reverse sorting ++ ** order (example: ``\fCset sort_browser=reverse-date\fP''). + */ + { "sidebar_visible", DT_BOOL, R_BOTH, OPTSIDEBAR, 0 }, + /* + ** .pp -+ ** This specifies whether or not to show sidebar (left-side list of folders). -+ */ -+ { "sidebar_sort", DT_BOOL, R_BOTH, OPTSIDEBARSORT, 0 }, -+ /* ++ ** This specifies whether or not to show sidebar. The sidebar shows a list of ++ ** all your mailboxes. + ** .pp -+ ** This specifies whether or not to sort the sidebar alphabetically. ++ ** \fBSee also:\fP $$sidebar_format, $$sidebar_width + */ + { "sidebar_width", DT_NUM, R_BOTH, UL &SidebarWidth, 0 }, + /* + ** .pp -+ ** The width of the sidebar. ++ ** This controls the width of the sidebar. It is measured in screen columns. ++ ** For example: sidebar_width=20 could display 20 ASCII characters, or 10 ++ ** Chinese characters. + */ - { "pgp_use_gpg_agent", DT_BOOL, R_NONE, OPTUSEGPGAGENT, 0}, ++#endif + { "sig_dashes", DT_BOOL, R_NONE, OPTSIGDASHES, 1 }, /* ** .pp -diff --git a/mailbox.h b/mailbox.h -index 2b2c9a1..000503d 100644 ---- a/mailbox.h -+++ b/mailbox.h -@@ -27,6 +27,7 @@ +@@ -3652,6 +3794,19 @@ + { NULL, 0 } + }; + ++const struct mapping_t SortSidebarMethods[] = { ++ { "alpha", SORT_PATH }, ++ { "count", SORT_COUNT }, ++ { "desc", SORT_DESC }, ++ { "flagged", SORT_FLAGGED }, ++ { "mailbox-order", SORT_ORDER }, ++ { "name", SORT_PATH }, ++ { "new", SORT_COUNT_NEW }, ++ { "path", SORT_PATH }, ++ { "unsorted", SORT_ORDER }, ++ { NULL, 0 } ++}; ++ + + /* functions used to parse commands in a rc file */ + +@@ -3741,6 +3896,9 @@ + { "send-hook", mutt_parse_hook, M_SENDHOOK }, + { "send2-hook", mutt_parse_hook, M_SEND2HOOK }, + { "set", parse_set, 0 }, ++#ifdef USE_SIDEBAR ++ { "sidebar_whitelist",parse_list, UL &SidebarWhitelist }, ++#endif + { "source", parse_source, 0 }, + { "spam", parse_spam_list, M_SPAM }, + { "nospam", parse_spam_list, M_NOSPAM }, +diff -urN mutt-1.6.1/keymap.c mutt-1.6.1-sidebar/keymap.c +--- mutt-1.6.1/keymap.c 2016-06-12 18:43:00.408447684 +0100 ++++ mutt-1.6.1-sidebar/keymap.c 2016-06-12 18:43:03.960503075 +0100 +@@ -453,6 +453,9 @@ + } + #endif + ++ /* update sidebar stats */ ++ mutt_buffy_check(0); ++ + timeout (i * 1000); + tmp = mutt_getch(); + timeout (-1); +diff -urN mutt-1.6.1/mailbox.h mutt-1.6.1-sidebar/mailbox.h +--- mutt-1.6.1/mailbox.h 2016-06-12 18:43:00.408447684 +0100 ++++ mutt-1.6.1-sidebar/mailbox.h 2016-06-12 18:43:03.960503075 +0100 +@@ -27,6 +27,9 @@ #define M_NEWFOLDER (1<<4) /* create a new folder - same as M_APPEND, but uses * safe_fopen() for mbox-style folders. */ ++#ifdef USE_SIDEBAR +#define M_PEEK (1<<5) /* revert atime back after taking a look (if applicable) */ ++#endif /* mx_open_new_message() */ #define M_ADD_FROM (1<<0) /* add a From_ line */ -diff --git a/mbox.c b/mbox.c -index 6d3b6bd..fa82eb3 100644 ---- a/mbox.c -+++ b/mbox.c -@@ -104,6 +104,7 @@ int mmdf_parse_mailbox (CONTEXT *ctx) +diff -urN mutt-1.6.1/main.c mutt-1.6.1-sidebar/main.c +--- mutt-1.6.1/main.c 2016-06-12 18:43:00.409447699 +0100 ++++ mutt-1.6.1-sidebar/main.c 2016-06-12 18:43:03.961503091 +0100 +@@ -31,6 +31,9 @@ + #include "url.h" + #include "mutt_crypt.h" + #include "mutt_idna.h" ++#ifdef USE_SIDEBAR ++#include "sidebar.h" ++#endif + + #ifdef USE_SASL + #include "mutt_sasl.h" +@@ -485,6 +488,12 @@ + "-USE_HCACHE " + #endif + ++#ifdef USE_SIDEBAR ++ "+USE_SIDEBAR " ++#else ++ "-USE_SIDEBAR " ++#endif ++ + ); + + #ifdef ISPELL +@@ -557,7 +566,11 @@ + + int main (int argc, char **argv) + { ++#ifdef USE_SIDEBAR ++ char folder[PATH_MAX] = ""; ++#else + char folder[_POSIX_PATH_MAX] = ""; ++#endif + char *subject = NULL; + char *includeFile = NULL; + char *draftFile = NULL; +@@ -828,6 +841,9 @@ + clear (); + mutt_error = mutt_curses_error; + mutt_message = mutt_curses_message; ++#ifdef USE_SIDEBAR ++ mutt_sb_init(); ++#endif + } + + /* Create the Maildir directory if it doesn't exist. */ +@@ -1184,6 +1200,15 @@ + strfcpy (folder, NONULL(Spoolfile), sizeof (folder)); + mutt_expand_path (folder, sizeof (folder)); + ++#ifdef USE_SIDEBAR ++ { ++ char tmpfolder[PATH_MAX] = ""; ++ strfcpy (tmpfolder, folder, sizeof (tmpfolder)); ++ if (!realpath (tmpfolder, folder)) ++ strfcpy (folder, tmpfolder, sizeof (tmpfolder)); ++ } ++#endif ++ + mutt_str_replace (&CurrentFolder, folder); + mutt_str_replace (&LastFolder, folder); + +@@ -1206,6 +1231,9 @@ + if((Context = mx_open_mailbox (folder, ((flags & M_RO) || option (OPTREADONLY)) ? M_READONLY : 0, NULL)) + || !explicit_folder) + { ++#ifdef USE_SIDEBAR ++ mutt_sb_set_open_buffy (folder); ++#endif + mutt_index_menu (); + if (Context) + FREE (&Context); +diff -urN mutt-1.6.1/Makefile.am mutt-1.6.1-sidebar/Makefile.am +--- mutt-1.6.1/Makefile.am 2016-06-12 18:43:00.389447388 +0100 ++++ mutt-1.6.1-sidebar/Makefile.am 2016-06-12 18:43:03.944502826 +0100 +@@ -56,7 +56,7 @@ + mutt_idna.c mutt_sasl.c mutt_socket.c mutt_ssl.c mutt_ssl_gnutls.c \ + mutt_tunnel.c pgp.c pgpinvoke.c pgpkey.c pgplib.c pgpmicalg.c \ + pgppacket.c pop.c pop_auth.c pop_lib.c remailer.c resize.c sha1.c \ +- smime.c smtp.c utf8.c wcwidth.c \ ++ sidebar.c smime.c smtp.c utf8.c wcwidth.c \ + bcache.h browser.h hcache.h mbyte.h mutt_idna.h remailer.h url.h + + EXTRA_DIST = COPYRIGHT GPL OPS OPS.PGP OPS.CRYPT OPS.SMIME TODO UPDATING \ +@@ -71,7 +71,7 @@ + mbyte.h lib.h extlib.c pgpewrap.c smime_keys.pl pgplib.h \ + README.SSL smime.h group.h \ + muttbug pgppacket.h depcomp ascii.h BEWARE PATCHES patchlist.sh \ +- ChangeLog mkchangelog.sh mutt_idna.h \ ++ ChangeLog mkchangelog.sh mutt_idna.h sidebar.h OPS.sidebar \ + snprintf.c regex.c crypt-gpgme.h hcachever.sh.in sys_socket.h \ + txt2c.c txt2c.sh version.sh check_sec.sh + +@@ -129,9 +129,9 @@ + keymap_defs.h: $(OPS) $(srcdir)/gen_defs + $(srcdir)/gen_defs $(OPS) > keymap_defs.h + +-keymap_alldefs.h: $(srcdir)/OPS $(srcdir)/OPS.PGP $(srcdir)/OPS.MIX $(srcdir)/OPS.CRYPT $(srcdir)/OPS.SMIME $(srcdir)/gen_defs ++keymap_alldefs.h: $(srcdir)/OPS $(srcdir)/OPS.SIDEBAR $(srcdir)/OPS.PGP $(srcdir)/OPS.MIX $(srcdir)/OPS.CRYPT $(srcdir)/OPS.SMIME $(srcdir)/gen_defs + rm -f $@ +- $(srcdir)/gen_defs $(srcdir)/OPS $(srcdir)/OPS.PGP \ ++ $(srcdir)/gen_defs $(srcdir)/OPS $(srcdir)/OPS.SIDEBAR $(srcdir)/OPS.PGP \ + $(srcdir)/OPS.MIX $(srcdir)/OPS.CRYPT $(srcdir)/OPS.SMIME \ + > keymap_alldefs.h + +diff -urN mutt-1.6.1/mbox.c mutt-1.6.1-sidebar/mbox.c +--- mutt-1.6.1/mbox.c 2016-06-12 18:43:00.409447699 +0100 ++++ mutt-1.6.1-sidebar/mbox.c 2016-06-12 18:43:03.961503091 +0100 +@@ -100,6 +100,9 @@ mutt_perror (ctx->path); return (-1); } ++#ifdef USE_SIDEBAR + ctx->atime = sb.st_atime; ++#endif ctx->mtime = sb.st_mtime; ctx->size = sb.st_size; -@@ -255,6 +256,7 @@ int mbox_parse_mailbox (CONTEXT *ctx) +@@ -251,6 +254,9 @@ ctx->size = sb.st_size; ctx->mtime = sb.st_mtime; ++#ifdef USE_SIDEBAR + ctx->atime = sb.st_atime; ++#endif #ifdef NFS_ATTRIBUTE_HACK if (sb.st_mtime > sb.st_atime) -diff --git a/menu.c b/menu.c -index 27b5f8e..bc3a02f 100644 ---- a/menu.c -+++ b/menu.c -@@ -24,6 +24,7 @@ +diff -urN mutt-1.6.1/menu.c mutt-1.6.1-sidebar/menu.c +--- mutt-1.6.1/menu.c 2016-06-12 18:43:00.409447699 +0100 ++++ mutt-1.6.1-sidebar/menu.c 2016-06-12 18:43:03.961503091 +0100 +@@ -24,6 +24,9 @@ #include "mutt_curses.h" #include "mutt_menu.h" #include "mbyte.h" ++#ifdef USE_SIDEBAR +#include "sidebar.h" ++#endif - extern size_t UngetCount; + char* SearchBuffers[MENU_MAX]; -@@ -186,7 +187,7 @@ static void menu_pad_string (char *s, size_t n) +@@ -184,7 +187,7 @@ { char *scratch = safe_strdup (s); int shift = option (OPTARROWCURSOR) ? 3 : 0; @@ -702,15 +2575,17 @@ index 27b5f8e..bc3a02f 100644 mutt_format_string (s, n, cols, cols, FMT_LEFT, ' ', scratch, mutt_strlen (scratch), 1); s[n - 1] = 0; -@@ -239,6 +240,7 @@ void menu_redraw_index (MUTTMENU *menu) +@@ -237,6 +240,9 @@ int do_color; int attr; -+ draw_sidebar(1); ++#ifdef USE_SIDEBAR ++ mutt_sb_draw(); ++#endif for (i = menu->top; i < menu->top + menu->pagelen; i++) { if (i < menu->max) -@@ -249,7 +251,7 @@ void menu_redraw_index (MUTTMENU *menu) +@@ -247,7 +253,7 @@ menu_pad_string (buf, sizeof (buf)); ATTRSET(attr); @@ -719,16 +2594,19 @@ index 27b5f8e..bc3a02f 100644 do_color = 1; if (i == menu->current) -@@ -272,7 +274,7 @@ void menu_redraw_index (MUTTMENU *menu) +@@ -270,7 +276,11 @@ else { NORMAL_COLOR; -- CLEARLINE(i - menu->top + menu->offset); ++#ifdef USE_SIDEBAR + CLEARLINE_WIN(i - menu->top + menu->offset); ++#else + CLEARLINE(i - menu->top + menu->offset); ++#endif } } NORMAL_COLOR; -@@ -289,7 +291,7 @@ void menu_redraw_motion (MUTTMENU *menu) +@@ -287,7 +297,7 @@ return; } @@ -737,7 +2615,7 @@ index 27b5f8e..bc3a02f 100644 ATTRSET(menu->color (menu->oldcurrent)); if (option (OPTARROWCURSOR)) -@@ -301,13 +303,13 @@ void menu_redraw_motion (MUTTMENU *menu) +@@ -299,13 +309,13 @@ { menu_make_entry (buf, sizeof (buf), menu, menu->oldcurrent); menu_pad_string (buf, sizeof (buf)); @@ -753,7 +2631,7 @@ index 27b5f8e..bc3a02f 100644 } else { -@@ -320,7 +322,7 @@ void menu_redraw_motion (MUTTMENU *menu) +@@ -318,7 +328,7 @@ menu_make_entry (buf, sizeof (buf), menu, menu->current); menu_pad_string (buf, sizeof (buf)); SETCOLOR(MT_COLOR_INDICATOR); @@ -762,7 +2640,7 @@ index 27b5f8e..bc3a02f 100644 print_enriched_string (menu->color(menu->current), (unsigned char *) buf, 0); } menu->redraw &= REDRAW_STATUS; -@@ -332,7 +334,7 @@ void menu_redraw_current (MUTTMENU *menu) +@@ -330,7 +340,7 @@ char buf[LONG_STRING]; int attr = menu->color (menu->current); @@ -771,7 +2649,7 @@ index 27b5f8e..bc3a02f 100644 menu_make_entry (buf, sizeof (buf), menu, menu->current); menu_pad_string (buf, sizeof (buf)); -@@ -881,7 +883,7 @@ int mutt_menuLoop (MUTTMENU *menu) +@@ -873,7 +883,7 @@ if (option (OPTARROWCURSOR)) @@ -780,160 +2658,207 @@ index 27b5f8e..bc3a02f 100644 else if (option (OPTBRAILLEFRIENDLY)) move (menu->current - menu->top + menu->offset, 0); else -diff --git a/mh.c b/mh.c -index 63e12d2..4a84a99 100644 ---- a/mh.c -+++ b/mh.c -@@ -295,6 +295,28 @@ void mh_buffy(BUFFY *b) +diff -urN mutt-1.6.1/mh.c mutt-1.6.1-sidebar/mh.c +--- mutt-1.6.1/mh.c 2016-06-12 18:43:00.410447715 +0100 ++++ mutt-1.6.1-sidebar/mh.c 2016-06-12 18:43:03.962503107 +0100 +@@ -295,6 +295,48 @@ mhs_free_sequences (&mhs); } -+void mh_buffy_update (const char *path, int *msgcount, int *msg_unread, int *msg_flagged) ++#ifdef USE_SIDEBAR ++/** ++ * mh_buffy_update - Update messages counts for an mh mailbox ++ * @mailbox: BUFFY representing a maildir mailbox ++ * ++ * Read through an mh mailbox and count messages. Save the number of new, ++ * flagged messages and a timestamp for now. ++ */ ++void ++mh_buffy_update (BUFFY *mailbox) +{ + int i; + struct mh_sequences mhs; -+ memset (&mhs, 0, sizeof (mhs)); + -+ if (mh_read_sequences (&mhs, path) < 0) ++ if (!mailbox) + return; + -+ msgcount = 0; -+ msg_unread = 0; -+ msg_flagged = 0; ++ if (!option (OPTSIDEBAR)) ++ return; ++ ++ memset (&mhs, 0, sizeof (mhs)); ++ ++ if (mh_read_sequences (&mhs, mailbox->path) < 0) ++ return; ++ ++ mailbox->msg_count = 0; ++ mailbox->msg_unread = 0; ++ mailbox->msg_flagged = 0; ++ + for (i = 0; i <= mhs.max; i++) -+ msgcount++; -+ if (mhs_check (&mhs, i) & MH_SEQ_UNSEEN) { -+ msg_unread++; ++ { ++ mailbox->msg_count++; ++ if (mhs_check (&mhs, i) & MH_SEQ_UNSEEN) ++ mailbox->msg_unread++; ++ if (mhs_check (&mhs, i) & MH_SEQ_FLAGGED) ++ mailbox->msg_flagged++; + } -+ if (mhs_check (&mhs, i) & MH_SEQ_FLAGGED) -+ msg_flagged++; + mhs_free_sequences (&mhs); ++ mailbox->sb_last_checked = time (NULL); +} ++#endif + static int mh_mkstemp (CONTEXT * dest, FILE ** fp, char **tgt) { int fd; -diff --git a/mutt.h b/mutt.h -index 01d47de..5f25406 100644 ---- a/mutt.h -+++ b/mutt.h -@@ -435,6 +435,8 @@ enum - OPTSAVEEMPTY, - OPTSAVENAME, - OPTSCORE, -+ OPTSIDEBAR, -+ OPTSIDEBARSORT, - OPTSIGDASHES, - OPTSIGONTOP, - OPTSORTRE, -@@ -880,6 +882,7 @@ typedef struct _context - { - char *path; - FILE *fp; -+ time_t atime; - time_t mtime; - off_t size; - off_t vsize; -@@ -920,6 +923,7 @@ typedef struct _context - unsigned int quiet : 1; /* inhibit status messages? */ - unsigned int collapsed : 1; /* are all threads collapsed? */ - unsigned int closing : 1; /* mailbox is being closed */ -+ unsigned int peekonly : 1; /* just taking a glance, revert atime */ - - /* driver hooks */ - void *data; /* driver specific data */ -diff --git a/mutt_curses.h b/mutt_curses.h -index f8bc47c..ef9884e 100644 ---- a/mutt_curses.h -+++ b/mutt_curses.h -@@ -64,6 +64,7 @@ +diff -urN mutt-1.6.1/mutt_curses.h mutt-1.6.1-sidebar/mutt_curses.h +--- mutt-1.6.1/mutt_curses.h 2016-06-12 18:43:00.410447715 +0100 ++++ mutt-1.6.1-sidebar/mutt_curses.h 2016-06-12 18:43:03.962503107 +0100 +@@ -64,6 +64,9 @@ #undef lines #endif /* lines */ -+#define CLEARLINE_WIN(x) move(x,SidebarWidth), clrtoeol() ++#ifdef USE_SIDEBAR ++#define CLEARLINE_WIN(x) move (x,SidebarWidth), clrtoeol() ++#endif #define CLEARLINE(x) move(x,0), clrtoeol() #define CENTERLINE(x,y) move(y, (COLS-strlen(x))/2), addstr(x) #define BEEP() do { if (option (OPTBEEP)) beep(); } while (0) -@@ -121,6 +122,8 @@ enum +@@ -124,6 +127,14 @@ MT_COLOR_UNDERLINE, MT_COLOR_INDEX, MT_COLOR_PROMPT, -+ MT_COLOR_NEW, ++#ifdef USE_SIDEBAR ++ MT_COLOR_DIVIDER, + MT_COLOR_FLAGGED, ++ MT_COLOR_HIGHLIGHT, ++ MT_COLOR_NEW, ++ MT_COLOR_SB_INDICATOR, ++ MT_COLOR_SB_SPOOLFILE, ++#endif MT_COLOR_MAX }; -diff --git a/muttlib.c b/muttlib.c -index c1d565f..039e7c3 100644 ---- a/muttlib.c -+++ b/muttlib.c -@@ -1279,6 +1279,8 @@ void mutt_FormatString (char *dest, /* output buffer */ +@@ -163,12 +174,16 @@ + + static inline int mutt_term_width(short wrap) + { ++ int cols = COLS; ++#ifdef USE_SIDEBAR ++ cols -= SidebarWidth; ++#endif + if (wrap < 0) +- return COLS > -wrap ? COLS + wrap : COLS; ++ return cols > -wrap ? cols + wrap : cols; + else if (wrap) +- return wrap < COLS ? wrap : COLS; ++ return wrap < cols ? wrap : cols; + else +- return COLS; ++ return cols; + } + + extern int *ColorQuote; +diff -urN mutt-1.6.1/mutt.h mutt-1.6.1-sidebar/mutt.h +--- mutt-1.6.1/mutt.h 2016-06-12 18:43:00.410447715 +0100 ++++ mutt-1.6.1-sidebar/mutt.h 2016-06-12 18:43:03.962503107 +0100 +@@ -428,6 +428,13 @@ + OPTSAVEEMPTY, + OPTSAVENAME, + OPTSCORE, ++#ifdef USE_SIDEBAR ++ OPTSIDEBAR, ++ OPTSIDEBARFOLDERINDENT, ++ OPTSIDEBARNEWMAILONLY, ++ OPTSIDEBARNEXTNEWWRAP, ++ OPTSIDEBARSHORTPATH, ++#endif + OPTSIGDASHES, + OPTSIGONTOP, + OPTSORTRE, +@@ -872,6 +879,9 @@ + { + char *path; + FILE *fp; ++#ifdef USE_SIDEBAR ++ time_t atime; ++#endif + time_t mtime; + off_t size; + off_t vsize; +@@ -906,6 +916,9 @@ + unsigned int quiet : 1; /* inhibit status messages? */ + unsigned int collapsed : 1; /* are all threads collapsed? */ + unsigned int closing : 1; /* mailbox is being closed */ ++#ifdef USE_SIDEBAR ++ unsigned int peekonly : 1; /* just taking a glance, revert atime */ ++#endif + + /* driver hooks */ + void *data; /* driver specific data */ +diff -urN mutt-1.6.1/muttlib.c mutt-1.6.1-sidebar/muttlib.c +--- mutt-1.6.1/muttlib.c 2016-06-12 18:43:00.411447731 +0100 ++++ mutt-1.6.1-sidebar/muttlib.c 2016-06-12 18:43:03.963503122 +0100 +@@ -1282,7 +1282,7 @@ pl = pw = 1; /* see if there's room to add content, else ignore */ -+ if ( DrawFullLine ) -+ { - if ((col < COLS && wlen < destlen) || soft) +- if ((col < COLS && wlen < destlen) || soft) ++ if ((col < (COLS - SidebarWidth) && (wlen < destlen)) || soft) { int pad; -@@ -1322,6 +1324,52 @@ void mutt_FormatString (char *dest, /* output buffer */ - col += wid; - src += pl; - } -+ } -+ else -+ { -+ if ((col < COLS-SidebarWidth && wlen < destlen) || soft) -+ { -+ int pad; -+ -+ /* get contents after padding */ -+ mutt_FormatString (buf, sizeof (buf), 0, src + pl, callback, data, flags); -+ len = mutt_strlen (buf); -+ wid = mutt_strwidth (buf); -+ -+ /* try to consume as many columns as we can, if we don't have -+ * memory for that, use as much memory as possible */ + +@@ -1293,7 +1293,7 @@ + + /* try to consume as many columns as we can, if we don't have + * memory for that, use as much memory as possible */ +- pad = (COLS - col - wid) / pw; + pad = (COLS - SidebarWidth - col - wid) / pw; -+ if (pad > 0 && wlen + (pad * pl) + len > destlen) -+ pad = ((signed)(destlen - wlen - len)) / pl; -+ if (pad > 0) -+ { -+ while (pad--) -+ { -+ memcpy (wptr, src, pl); -+ wptr += pl; -+ wlen += pl; -+ col += pw; -+ } -+ } -+ else if (soft && pad < 0) -+ { -+ /* \0-terminate dest for length computation in mutt_wstr_trunc() */ -+ *wptr = 0; -+ /* make sure right part is at most as wide as display */ -+ len = mutt_wstr_trunc (buf, destlen, COLS, &wid); -+ /* truncate left so that right part fits completely in */ -+ wlen = mutt_wstr_trunc (dest, destlen - len, col + pad, &col); -+ wptr = dest + wlen; -+ } -+ if (len + wlen > destlen) + if (pad > 0 && wlen + (pad * pl) + len > destlen) + pad = ((signed)(destlen - wlen - len)) / pl; + if (pad > 0) +@@ -1312,13 +1312,13 @@ + /* \0-terminate dest for length computation in mutt_wstr_trunc() */ + *wptr = 0; + /* make sure right part is at most as wide as display */ +- len = mutt_wstr_trunc (buf, destlen, COLS-offset, &wid); ++ len = mutt_wstr_trunc (buf, destlen, COLS - offset - SidebarWidth, &wid); + /* truncate left so that right part fits completely in */ + wlen = mutt_wstr_trunc (dest, destlen - len, col + pad*pw -offset, &col); + wptr = dest + wlen; + } + if (len + wlen > destlen) +- len = mutt_wstr_trunc (buf, destlen - wlen, COLS - col, NULL); + len = mutt_wstr_trunc (buf, destlen - wlen, COLS - SidebarWidth - col, NULL); -+ memcpy (wptr, buf, len); -+ wptr += len; -+ wlen += len; -+ col += wid; -+ src += pl; -+ } -+ } - break; /* skip rest of input */ - } - else if (ch == '|') -diff --git a/mx.c b/mx.c -index 0a1a80e..e80b8ff 100644 ---- a/mx.c -+++ b/mx.c -@@ -595,6 +595,7 @@ static int mx_open_mailbox_append (CONTEXT *ctx, int flags) + memcpy (wptr, buf, len); + wptr += len; + wlen += len; +diff -urN mutt-1.6.1/mutt_menu.h mutt-1.6.1-sidebar/mutt_menu.h +--- mutt-1.6.1/mutt_menu.h 2016-06-12 18:43:00.410447715 +0100 ++++ mutt-1.6.1-sidebar/mutt_menu.h 2016-06-12 18:43:03.962503107 +0100 +@@ -34,6 +34,9 @@ + #define REDRAW_FULL (1<<5) + #define REDRAW_BODY (1<<6) + #define REDRAW_SIGWINCH (1<<7) ++#ifdef USE_SIDEBAR ++#define REDRAW_SIDEBAR (1<<8) ++#endif + + #define M_MODEFMT "-- Mutt: %s" + +diff -urN mutt-1.6.1/mx.c mutt-1.6.1-sidebar/mx.c +--- mutt-1.6.1/mx.c 2016-06-12 18:43:00.411447731 +0100 ++++ mutt-1.6.1-sidebar/mx.c 2016-06-12 18:43:03.963503122 +0100 +@@ -29,6 +29,9 @@ + #include "copy.h" + #include "keymap.h" + #include "url.h" ++#ifdef USE_SIDEBAR ++#include "sidebar.h" ++#endif + + #ifdef USE_IMAP + #include "imap.h" +@@ -580,6 +583,7 @@ * M_APPEND open mailbox for appending * M_READONLY open mailbox in read-only mode * M_QUIET only print error messages @@ -941,70 +2866,128 @@ index 0a1a80e..e80b8ff 100644 * ctx if non-null, context struct to use */ CONTEXT *mx_open_mailbox (const char *path, int flags, CONTEXT *pctx) -@@ -617,6 +618,8 @@ CONTEXT *mx_open_mailbox (const char *path, int flags, CONTEXT *pctx) +@@ -602,6 +606,10 @@ ctx->quiet = 1; if (flags & M_READONLY) ctx->readonly = 1; ++#ifdef USE_SIDEBAR + if (flags & M_PEEK) + ctx->peekonly = 1; ++#endif if (flags & (M_APPEND|M_NEWFOLDER)) { -@@ -721,9 +724,21 @@ CONTEXT *mx_open_mailbox (const char *path, int flags, CONTEXT *pctx) - void mx_fastclose_mailbox (CONTEXT *ctx) - { - int i; -+#ifndef BUFFY_SIZE -+ struct utimbuf ut; -+#endif - +@@ -705,8 +713,21 @@ if(!ctx) return; -+#ifndef BUFFY_SIZE + ++#ifdef USE_SIDEBAR + /* fix up the times so buffy won't get confused */ -+ if (ctx->peekonly && ctx->path && ctx->mtime > ctx->atime) -+ { -+ ut.actime = ctx->atime; ++ struct utimbuf ut; ++ if (ctx->peekonly && ctx->path && (ctx->mtime > ctx->atime)) { ++ ut.actime = ctx->atime; + ut.modtime = ctx->mtime; -+ utime (ctx->path, &ut); ++ utime (ctx->path, &ut); + } +#endif - ++ /* never announce that a mailbox we've just left has new mail. #3290 * XXX: really belongs in mx_close_mailbox, but this is a nice hook point */ -diff --git a/mx.h b/mx.h -index 2ef4ec7..4aabadf 100644 ---- a/mx.h -+++ b/mx.h -@@ -60,6 +60,7 @@ void mbox_reset_atime (CONTEXT *, struct stat *); ++#ifdef USE_SIDEBAR ++ if (!ctx->peekonly) ++#endif + mutt_buffy_setnotified(ctx->path); + + if (ctx->mx_close) +@@ -812,6 +833,12 @@ + if (!ctx->hdrs[i]->deleted && ctx->hdrs[i]->read + && !(ctx->hdrs[i]->flagged && option (OPTKEEPFLAGGED))) + read_msgs++; ++#ifdef USE_SIDEBAR ++ if (ctx->hdrs[i]->deleted && !ctx->hdrs[i]->read) ++ ctx->unread--; ++ if (ctx->hdrs[i]->deleted && ctx->hdrs[i]->flagged) ++ ctx->flagged--; ++#endif + } + + if (read_msgs && quadoption (OPT_MOVE) != M_NO) +@@ -981,6 +1008,11 @@ + !mutt_is_spool(ctx->path) && !option (OPTSAVEEMPTY)) + mx_unlink_empty (ctx->path); + ++#ifdef USE_SIDEBAR ++ ctx->msgcount -= ctx->deleted; ++ mutt_sb_set_buffystats (ctx); ++#endif ++ + mx_fastclose_mailbox (ctx); + + return 0; +diff -urN mutt-1.6.1/mx.h mutt-1.6.1-sidebar/mx.h +--- mutt-1.6.1/mx.h 2016-06-12 18:43:00.411447731 +0100 ++++ mutt-1.6.1-sidebar/mx.h 2016-06-12 18:43:03.963503122 +0100 +@@ -26,6 +26,7 @@ + #define _MX_H + + #include "mailbox.h" ++#include "buffy.h" + + /* supported mailbox formats */ + enum +@@ -57,6 +58,9 @@ int mh_read_dir (CONTEXT *, const char *); int mh_sync_mailbox (CONTEXT *, int *); int mh_check_mailbox (CONTEXT *, int *); -+void mh_buffy_update (const char *, int *, int *, int *); ++#ifdef USE_SIDEBAR ++void mh_buffy_update (BUFFY *mailbox); ++#endif int mh_check_empty (const char *); int maildir_read_dir (CONTEXT *); -diff --git a/pager.c b/pager.c -index c99f1e4..5cfcb75 100644 ---- a/pager.c -+++ b/pager.c -@@ -29,6 +29,7 @@ +diff -urN mutt-1.6.1/OPS.SIDEBAR mutt-1.6.1-sidebar/OPS.SIDEBAR +--- mutt-1.6.1/OPS.SIDEBAR 1970-01-01 01:00:00.000000000 +0100 ++++ mutt-1.6.1-sidebar/OPS.SIDEBAR 2016-06-12 18:43:03.944502826 +0100 +@@ -0,0 +1,8 @@ ++OP_SIDEBAR_NEXT "Move the highlight to next mailbox" ++OP_SIDEBAR_NEXT_NEW "Move the highlight to next mailbox with new mail" ++OP_SIDEBAR_OPEN "Open highlighted mailbox" ++OP_SIDEBAR_PAGE_DOWN "Scroll the Sidebar down 1 page" ++OP_SIDEBAR_PAGE_UP "Scroll the Sidebar up 1 page" ++OP_SIDEBAR_PREV "Move the highlight to previous mailbox" ++OP_SIDEBAR_PREV_NEW "Move the highlight to previous mailbox with new mail" ++OP_SIDEBAR_TOGGLE_VISIBLE "Make the Sidebar (in)visible" +diff -urN mutt-1.6.1/pager.c mutt-1.6.1-sidebar/pager.c +--- mutt-1.6.1/pager.c 2016-06-12 18:43:00.412447746 +0100 ++++ mutt-1.6.1-sidebar/pager.c 2016-06-12 18:43:03.964503138 +0100 +@@ -29,6 +29,9 @@ #include "pager.h" #include "attach.h" #include "mbyte.h" ++#ifdef USE_SIDEBAR +#include "sidebar.h" ++#endif #include "mutt_crypt.h" -@@ -1095,6 +1096,7 @@ static int format_line (struct line_t **lineInfo, int n, unsigned char *buf, - wchar_t wc; - mbstate_t mbstate; - int wrap_cols = mutt_term_width ((flags & M_PAGER_NOWRAP) ? 0 : Wrap); -+ wrap_cols -= SidebarWidth; +@@ -1491,7 +1494,7 @@ + * a newline (grr!). + */ + #ifndef USE_SLANG_CURSES +- if (col < COLS) ++ if (col < (COLS - SidebarWidth)) + #endif + addch ('\n'); - if (check_attachment_marker ((char *)buf) == 0) - wrap_cols = COLS; -@@ -1746,7 +1748,7 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra) +@@ -1573,6 +1576,7 @@ + + int bodyoffset = 1; /* offset of first line of real text */ + int statusoffset = 0; /* offset for the status bar */ ++ int statuswidth = COLS; + int helpoffset = LINES - 2; /* offset for the help bar. */ + int bodylen = LINES - 2 - bodyoffset; /* length of displayable area */ + +@@ -1747,7 +1751,7 @@ if ((redraw & REDRAW_BODY) || topline != oldtopline) { do { @@ -1013,465 +2996,1455 @@ index c99f1e4..5cfcb75 100644 curline = oldtopline = topline; lines = 0; force_redraw = 0; -@@ -1759,6 +1761,7 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra) +@@ -1760,6 +1764,9 @@ &QuoteList, &q_level, &force_redraw, &SearchRE) > 0) lines++; curline++; -+ move(lines + bodyoffset, SidebarWidth); ++#ifdef USE_SIDEBAR ++ move (lines + bodyoffset, SidebarWidth); ++#endif } last_offset = lineInfo[curline].offset; } while (force_redraw); -@@ -1771,6 +1774,7 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra) +@@ -1772,6 +1779,9 @@ addch ('~'); addch ('\n'); lines++; -+ move(lines + bodyoffset, SidebarWidth); ++#ifdef USE_SIDEBAR ++ move (lines + bodyoffset, SidebarWidth); ++#endif } NORMAL_COLOR; -@@ -1794,22 +1798,22 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra) +@@ -1789,29 +1799,49 @@ + hfi.ctx = Context; + hfi.pager_progress = pager_progress_str; + ++#ifdef USE_SIDEBAR ++ statuswidth = COLS; ++ if (option (OPTSTATUSONTOP) && (PagerIndexLines > 0)) ++ statuswidth -= SidebarWidth; ++#endif ++ + if (last_pos < sb.st_size - 1) + snprintf(pager_progress_str, sizeof(pager_progress_str), OFF_T_FMT "%%", (100 * last_offset / sb.st_size)); + else strfcpy(pager_progress_str, (topline == 0) ? "all" : "end", sizeof(pager_progress_str)); /* print out the pager status bar */ - move (statusoffset, 0); + move (statusoffset, SidebarWidth); SETCOLOR (MT_COLOR_STATUS); ++#ifdef USE_SIDEBAR ++ short sw = SidebarWidth; ++ if (option (OPTSTATUSONTOP) && PagerIndexLines > 0) { ++ CLEARLINE_WIN (statusoffset); ++ } else { ++ CLEARLINE (statusoffset); ++ /* Temporarily lie about the sidebar width */ ++ SidebarWidth = 0; ++ } ++#endif if (IsHeader (extra) || IsMsgAttach (extra)) { - size_t l1 = COLS * MB_LEN_MAX; -+ size_t l1 = (COLS-SidebarWidth) * MB_LEN_MAX; ++ size_t l1 = statuswidth * MB_LEN_MAX; size_t l2 = sizeof (buffer); hfi.hdr = (IsHeader (extra)) ? extra->hdr : extra->bdy->hdr; mutt_make_string_info (buffer, l1 < l2 ? l1 : l2, NONULL (PagerFmt), &hfi, M_FORMAT_MAKEPRINT); - mutt_paddstr (COLS, buffer); -+ mutt_paddstr (COLS-SidebarWidth, buffer); ++ mutt_paddstr (statuswidth, buffer); } else { char bn[STRING]; snprintf (bn, sizeof (bn), "%s (%s)", banner, pager_progress_str); - mutt_paddstr (COLS, bn); -+ mutt_paddstr (COLS-SidebarWidth, bn); ++ mutt_paddstr (statuswidth, bn); } ++#ifdef USE_SIDEBAR ++ if (!option (OPTSTATUSONTOP) || PagerIndexLines == 0) ++ SidebarWidth = sw; /* Restore the sidebar width */ ++#endif NORMAL_COLOR; if (option(OPTTSENABLED) && TSSupported) -@@ -1826,16 +1830,21 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra) + { +@@ -1827,16 +1857,26 @@ /* redraw the pager_index indicator, because the * flags for this message might have changed. */ menu_redraw_current (index); -+ draw_sidebar(MENU_PAGER); ++#ifdef USE_SIDEBAR ++ mutt_sb_draw(); ++#endif /* print out the index status bar */ menu_status_line (buffer, sizeof (buffer), index, NONULL(Status)); - move (indexoffset + (option (OPTSTATUSONTOP) ? 0 : (indexlen - 1)), 0); -+ move (indexoffset + (option (OPTSTATUSONTOP) ? 0 : (indexlen - 1)), SidebarWidth); ++ move (indexoffset + (option (OPTSTATUSONTOP) ? 0 : (indexlen - 1)), ++ (option(OPTSTATUSONTOP) ? 0: SidebarWidth)); SETCOLOR (MT_COLOR_STATUS); - mutt_paddstr (COLS, buffer); -+ mutt_paddstr (COLS-SidebarWidth, buffer); ++ mutt_paddstr (COLS - (option(OPTSTATUSONTOP) ? 0 : SidebarWidth), buffer); NORMAL_COLOR; } ++#ifdef USE_SIDEBAR + /* if we're not using the index, update every time */ -+ if ( index == 0 ) -+ draw_sidebar(MENU_PAGER); ++ if (index == 0) ++ mutt_sb_draw(); ++#endif + redraw = 0; if (option(OPTBRAILLEFRIENDLY)) { -@@ -2776,6 +2785,13 @@ search_next: +@@ -2498,8 +2538,12 @@ + ch = 0; + } + +- if (option (OPTFORCEREDRAWPAGER)) ++ if (option (OPTFORCEREDRAWPAGER)) { + redraw = REDRAW_FULL; ++#ifdef USE_SIDEBAR ++ mutt_sb_draw(); ++#endif ++ } + unset_option (OPTFORCEREDRAWINDEX); + unset_option (OPTFORCEREDRAWPAGER); + break; +@@ -2777,6 +2821,22 @@ mutt_what_key (); break; -+ case OP_SIDEBAR_SCROLL_UP: -+ case OP_SIDEBAR_SCROLL_DOWN: ++#ifdef USE_SIDEBAR + case OP_SIDEBAR_NEXT: ++ case OP_SIDEBAR_NEXT_NEW: ++ case OP_SIDEBAR_PAGE_DOWN: ++ case OP_SIDEBAR_PAGE_UP: + case OP_SIDEBAR_PREV: -+ scroll_sidebar(ch, MENU_PAGER); -+ break; ++ case OP_SIDEBAR_PREV_NEW: ++ mutt_sb_change_mailbox (ch); ++ break; ++ ++ case OP_SIDEBAR_TOGGLE_VISIBLE: ++ toggle_option (OPTSIDEBAR); ++ redraw = REDRAW_FULL; ++ break; ++#endif + default: ch = -1; break; -diff --git a/sidebar.c b/sidebar.c -new file mode 100644 -index 0000000..6098c2a ---- /dev/null -+++ b/sidebar.c -@@ -0,0 +1,333 @@ -+/* -+ * Copyright (C) ????-2004 Justin Hibbits +diff -urN mutt-1.6.1/PATCHES mutt-1.6.1-sidebar/PATCHES +--- mutt-1.6.1/PATCHES 2016-06-12 18:43:00.395447481 +0100 ++++ mutt-1.6.1-sidebar/PATCHES 2016-06-12 18:43:03.949502904 +0100 +@@ -0,0 +1 @@ ++patch-sidebar-neo-20160612 +diff -urN mutt-1.6.1/README.sidebar mutt-1.6.1-sidebar/README.sidebar +--- mutt-1.6.1/README.sidebar 1970-01-01 01:00:00.000000000 +0100 ++++ mutt-1.6.1-sidebar/README.sidebar 2016-06-12 18:43:03.792500456 +0100 +@@ -0,0 +1,145 @@ ++Sidebar Patch ++============= ++ ++ Overview of mailboxes ++ ++ NOTES: ++ ++ If you haven't used the sidebar before, you might like to read the ++ Sidebar Introduction: ++ ++ http://www.neomutt.org/sidebar-intro.html ++ ++ If you have used an older version of the Sidebar, please note that some ++ of the configuration has changed. ++ ++ http://www.neomutt.org/sidebar-intro.html#intro-sidebar-config-changes ++ ++Patch ++----- ++ ++ To check if Mutt supports "Sidebar", look for "+USE_SIDEBAR" in the mutt ++ version. ++ ++ Dependencies ++ * mutt-1.6.1 ++ ++Introduction ++------------ ++ ++ The Sidebar shows a list of all your mailboxes. The list can be turned on ++ and off, it can be themed and the list style can be configured. ++ ++ This part of the manual is a reference guide. If you want a simple ++ introduction with examples see the Sidebar Howto. If you just want to get ++ started, you could use the sample Sidebar muttrc. ++ ++ This version of Sidebar is based on Terry Chan's [2015-11-11 ++ release](http://www.lunar-linux.org/mutt-sidebar/). It contains many new ++ features, lots of bugfixes. ++ ++Variables ++--------- ++ ++ Sidebar Variables ++ ++ | Name | Type | Default | ++ |-------------------------|---------|-----------------------------| ++ | 'sidebar_delim_chars' | string | '/.' | ++ | 'sidebar_divider_char' | string | '|' | ++ | 'sidebar_folder_indent' | boolean | 'no' | ++ | 'sidebar_format' | string | '%B%?F? [%F]?%* %?N?%N/?%S' | ++ | 'sidebar_indent_string' | string | '  ' (two spaces) | ++ | 'sidebar_new_mail_only' | boolean | 'no' | ++ | 'sidebar_next_new_wrap' | boolean | 'no' | ++ | 'sidebar_refresh_time' | number | '60' | ++ | 'sidebar_short_path' | boolean | 'no' | ++ | 'sidebar_sort_method' | enum | 'SORT_ORDER' | ++ | 'sidebar_visible' | boolean | 'no' | ++ | 'sidebar_whitelist' | list | (empty) | ++ | 'sidebar_width' | number | '20' | ++ ++Functions ++--------- ++ ++ Sidebar Functions ++ ++ Sidebar adds the following functions to Mutt. By default, none of them are ++ bound to keys. ++ ++ | Menus | Function | Description | ++ |-------------|----------------------------|------------------------------------------------------| ++ | index,pager | '' | Move the highlight to next mailbox | ++ | index,pager | '' | Move the highlight to next mailbox with new mail | ++ | index,pager | '' | Open highlighted mailbox | ++ | index,pager | '' | Scroll the Sidebar down 1 page | ++ | index,pager | '' | Scroll the Sidebar up 1 page | ++ | index,pager | '' | Move the highlight to previous mailbox | ++ | index,pager | '' | Move the highlight to previous mailbox with new mail | ++ | index,pager | '' | Make the Sidebar (in)visible | ++ ++Commands ++-------- ++ ++ sidebar_whitelist mailbox [ mailbox... ] ++ ++Colors ++------ ++ ++ Sidebar Colors ++ ++ | Name | Default Color | Description | ++ |---------------------|------------------|------------------------------------------------------------------| ++ | 'sidebar_divider' | default | The dividing line between the Sidebar and the Index/Pager panels | ++ | 'sidebar_flagged' | default | Mailboxes containing flagged mail | ++ | 'sidebar_highlight' | underline | Cursor to select a mailbox | ++ | 'sidebar_indicator' | mutt 'indicator' | The mailbox open in the Index panel | ++ | 'sidebar_new' | default | Mailboxes containing new mail | ++ | 'sidebar_spoolfile' | default | Mailbox that receives incoming mail | ++ ++ If the sidebar_indicator color isn't set, then the default Mutt indicator ++ color will be used (the color used in the index panel). ++ ++Sort ++---- ++ ++ Sidebar Sort ++ ++ | Sort | Description | ++ |------------|----------------------------| ++ | 'alpha' | Alphabetically by path | ++ | 'count' | Total number of messages | ++ | 'flagged' | Number of flagged messages | ++ | 'name' | Alphabetically by path | ++ | 'new' | Number of new messages | ++ | 'path' | Alphabetically by path | ++ | 'unsorted' | Do not resort the paths | ++ ++See Also ++-------- ++ ++ * Regular Expressions ++ * Patterns ++ * Color command ++ * notmuch patch ++ ++Known Bugs ++---------- ++ ++ Unsorted isn't ++ ++Credits ++------- ++ ++ * Justin Hibbits ++ * Thomer M. Gil ++ * David Sterba ++ * Evgeni Golov ++ * Fabian Groffen ++ * Jason DeTiberus ++ * Stefan Assmann ++ * Steve Kemp ++ * Terry Chan ++ * Tyler Earnest ++ * Richard Russon ++ +diff -urN mutt-1.6.1/sidebar.c mutt-1.6.1-sidebar/sidebar.c +--- mutt-1.6.1/sidebar.c 1970-01-01 01:00:00.000000000 +0100 ++++ mutt-1.6.1-sidebar/sidebar.c 2016-06-14 18:46:00.000000000 +0100 +@@ -0,0 +1,1090 @@ ++/* Copyright (C) 2004 Justin Hibbits + * Copyright (C) 2004 Thomer M. Gil -+ * ++ * Copyright (C) 2015-2016 Richard Russon ++ * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. -+ */ -+ ++ */ + +#if HAVE_CONFIG_H +# include "config.h" +#endif + +#include "mutt.h" -+#include "mutt_menu.h" -+#include "mutt_curses.h" -+#include "sidebar.h" +#include "buffy.h" -+#include +#include "keymap.h" -+#include ++#include "mutt_curses.h" ++#include "mutt_menu.h" ++#include "sort.h" + -+/*BUFFY *CurBuffy = 0;*/ -+static BUFFY *TopBuffy = 0; -+static BUFFY *BottomBuffy = 0; -+static int known_lines = 0; ++/* Previous values for some sidebar config */ ++static short OldVisible; /* sidebar_visible */ ++static short OldWidth; /* sidebar_width */ ++static short PreviousSort; /* sidebar_sort_method */ ++static time_t LastRefresh; /* Time of last refresh */ + -+static int quick_log10(int n) ++/* Keep track of various BUFFYs */ ++static BUFFY *TopBuffy; /* First mailbox visible in sidebar */ ++static BUFFY *OpnBuffy; /* Current (open) mailbox */ ++static BUFFY *HilBuffy; /* Highlighted mailbox */ ++static BUFFY *BotBuffy; /* Last mailbox visible in sidebar */ ++static BUFFY *Outgoing; /* Last mailbox in the linked list */ ++ ++/** ++ * struct sidebar_entry - Info about folders in the sidebar ++ * ++ * Used in the mutt_FormatString callback ++ */ ++struct sidebar_entry +{ -+ char string[32]; -+ sprintf(string, "%d", n); -+ return strlen(string); ++ char box[STRING]; ++ BUFFY *buffy; ++}; ++ ++ ++/** ++ * find_next_new - Find the next folder that contains new mail ++ * @wrap: Wrap around to the beginning if the end is reached ++ * ++ * Search down the list of mail folders for one containing new mail. ++ * ++ * Returns: ++ * BUFFY*: Success ++ * NULL: Failure ++ */ ++static BUFFY *find_next_new (int wrap) ++{ ++ BUFFY *b = HilBuffy; ++ if (!b) ++ return NULL; ++ ++ do ++ { ++ b = b->next; ++ if (!b && wrap) ++ b = Incoming; ++ if (!b || (b == HilBuffy)) ++ break; ++ if (b->msg_unread > 0) ++ return b; ++ } while (b); ++ ++ return NULL; +} + -+void calc_boundaries (int menu) ++/** ++ * find_prev_new - Find the previous folder that contains new mail ++ * @wrap: Wrap around to the beginning if the end is reached ++ * ++ * Search up the list of mail folders for one containing new mail. ++ * ++ * Returns: ++ * BUFFY*: Success ++ * NULL: Failure ++ */ ++static BUFFY *find_prev_new (int wrap) +{ -+ BUFFY *tmp = Incoming; ++ BUFFY *b = HilBuffy; ++ if (!b) ++ return NULL; + -+ if ( known_lines != LINES ) { -+ TopBuffy = BottomBuffy = 0; -+ known_lines = LINES; -+ } -+ for ( ; tmp->next != 0; tmp = tmp->next ) -+ tmp->next->prev = tmp; ++ do ++ { ++ b = b->prev; ++ if (!b && wrap) ++ b = Outgoing; ++ if (!b || (b == HilBuffy)) ++ break; ++ if (b->msg_unread > 0) ++ return b; ++ } while (b); + -+ if ( TopBuffy == 0 && BottomBuffy == 0 ) -+ TopBuffy = Incoming; -+ if ( BottomBuffy == 0 ) { -+ int count = LINES - 2 - (menu != MENU_PAGER || option(OPTSTATUSONTOP)); -+ BottomBuffy = TopBuffy; -+ while ( --count && BottomBuffy->next ) -+ BottomBuffy = BottomBuffy->next; -+ } -+ else if ( TopBuffy == CurBuffy->next ) { -+ int count = LINES - 2 - (menu != MENU_PAGER); -+ BottomBuffy = CurBuffy; -+ tmp = BottomBuffy; -+ while ( --count && tmp->prev) -+ tmp = tmp->prev; -+ TopBuffy = tmp; -+ } -+ else if ( BottomBuffy == CurBuffy->prev ) { -+ int count = LINES - 2 - (menu != MENU_PAGER); -+ TopBuffy = CurBuffy; -+ tmp = TopBuffy; -+ while ( --count && tmp->next ) -+ tmp = tmp->next; -+ BottomBuffy = tmp; -+ } ++ return NULL; +} + -+char *make_sidebar_entry(char *box, int size, int new, int flagged) ++/** ++ * cb_format_str - Create the string to show in the sidebar ++ * @dest: Buffer in which to save string ++ * @destlen: Buffer length ++ * @col: Starting column, UNUSED ++ * @op: printf-like operator, e.g. 'B' ++ * @src: printf-like format string ++ * @prefix: Field formatting string, UNUSED ++ * @ifstring: If condition is met, display this string ++ * @elsestring: Otherwise, display this string ++ * @data: Pointer to our sidebar_entry ++ * @flags: Format flags, e.g. M_FORMAT_OPTIONAL ++ * ++ * cb_format_str is a callback function for mutt_FormatString. It understands ++ * five operators. '%B' : Mailbox name, '%F' : Number of flagged messages, ++ * '%N' : Number of new messages, '%S' : Size (total number of messages), ++ * '%!' : Icon denoting number of flagged messages. ++ * ++ * Returns: src (unchanged) ++ */ ++static const char *cb_format_str(char *dest, size_t destlen, size_t col, char op, ++ const char *src, const char *prefix, const char *ifstring, ++ const char *elsestring, unsigned long data, format_flag flags) +{ -+ static char *entry = 0; -+ char *c; -+ int i = 0; -+ int delim_len = strlen(SidebarDelim); ++ struct sidebar_entry *sbe = (struct sidebar_entry *) data; ++ unsigned int optional; ++ char fmt[STRING]; + -+ c = realloc(entry, SidebarWidth - delim_len + 2); -+ if ( c ) entry = c; -+ entry[SidebarWidth - delim_len + 1] = 0; -+ for (; i < SidebarWidth - delim_len + 1; entry[i++] = ' ' ); -+ i = strlen(box); -+ strncpy( entry, box, i < (SidebarWidth - delim_len + 1) ? i : (SidebarWidth - delim_len + 1) ); ++ if (!sbe || !dest) ++ return src; + -+ if (size == -1) -+ sprintf(entry + SidebarWidth - delim_len - 3, "?"); -+ else if ( new ) { -+ if (flagged > 0) { -+ sprintf( -+ entry + SidebarWidth - delim_len - 5 - quick_log10(size) - quick_log10(new) - quick_log10(flagged), -+ "% d(%d)[%d]", size, new, flagged); -+ } else { -+ sprintf( -+ entry + SidebarWidth - delim_len - 3 - quick_log10(size) - quick_log10(new), -+ "% d(%d)", size, new); -+ } -+ } else if (flagged > 0) { -+ sprintf( entry + SidebarWidth - delim_len - 3 - quick_log10(size) - quick_log10(flagged), "% d[%d]", size, flagged); -+ } else { -+ sprintf( entry + SidebarWidth - delim_len - 1 - quick_log10(size), "% d", size); -+ } -+ return entry; ++ dest[0] = 0; /* Just in case there's nothing to do */ ++ ++ BUFFY *b = sbe->buffy; ++ if (!b) ++ return src; ++ ++ int c = Context && (mutt_strcmp (Context->path, b->path) == 0); ++ ++ optional = flags & M_FORMAT_OPTIONAL; ++ ++ switch (op) ++ { ++ case 'B': ++ mutt_format_s (dest, destlen, prefix, sbe->box); ++ break; ++ ++ case 'd': ++ if (!optional) ++ { ++ snprintf (fmt, sizeof (fmt), "%%%sd", prefix); ++ snprintf (dest, destlen, fmt, c ? Context->deleted : 0); ++ } ++ else if ((c && Context->deleted == 0) || !c) ++ optional = 0; ++ break; ++ ++ case 'F': ++ if (!optional) ++ { ++ snprintf (fmt, sizeof (fmt), "%%%sd", prefix); ++ snprintf (dest, destlen, fmt, b->msg_flagged); ++ } ++ else if (b->msg_flagged == 0) ++ optional = 0; ++ break; ++ ++ case 'L': ++ if (!optional) ++ { ++ snprintf (fmt, sizeof (fmt), "%%%sd", prefix); ++ snprintf (dest, destlen, fmt, c ? Context->vcount : b->msg_count); ++ } ++ else if ((c && Context->vcount == b->msg_count) || !c) ++ optional = 0; ++ break; ++ ++ case 'N': ++ if (!optional) ++ { ++ snprintf (fmt, sizeof (fmt), "%%%sd", prefix); ++ snprintf (dest, destlen, fmt, b->msg_unread); ++ } ++ else if (b->msg_unread == 0) ++ optional = 0; ++ break; ++ ++ case 'S': ++ if (!optional) ++ { ++ snprintf (fmt, sizeof (fmt), "%%%sd", prefix); ++ snprintf (dest, destlen, fmt, b->msg_count); ++ } ++ else if (b->msg_count == 0) ++ optional = 0; ++ break; ++ ++ case 't': ++ if (!optional) ++ { ++ snprintf (fmt, sizeof (fmt), "%%%sd", prefix); ++ snprintf (dest, destlen, fmt, c ? Context->tagged : 0); ++ } ++ else if ((c && Context->tagged == 0) || !c) ++ optional = 0; ++ break; ++ ++ case '!': ++ if (b->msg_flagged == 0) ++ mutt_format_s (dest, destlen, prefix, ""); ++ else if (b->msg_flagged == 1) ++ mutt_format_s (dest, destlen, prefix, "!"); ++ else if (b->msg_flagged == 2) ++ mutt_format_s (dest, destlen, prefix, "!!"); ++ else ++ { ++ snprintf (fmt, sizeof (fmt), "%d!", b->msg_flagged); ++ mutt_format_s (dest, destlen, prefix, fmt); ++ } ++ break; ++ } ++ ++ if (optional) ++ mutt_FormatString (dest, destlen, col, ifstring, cb_format_str, (unsigned long) sbe, flags); ++ else if (flags & M_FORMAT_OPTIONAL) ++ mutt_FormatString (dest, destlen, col, elsestring, cb_format_str, (unsigned long) sbe, flags); ++ ++ /* We return the format string, unchanged */ ++ return src; +} + -+void set_curbuffy(char buf[LONG_STRING]) ++/** ++ * make_sidebar_entry - Turn mailbox data into a sidebar string ++ * @buf: Buffer in which to save string ++ * @buflen: Buffer length ++ * @width: Desired width in screen cells ++ * @box: Mailbox name ++ * @size: Size (total number of messages) ++ * @new: Number of new messages ++ * @flagged: Number of flagged messages ++ * ++ * Take all the relevant mailbox data and the desired screen width and then get ++ * mutt_FormatString to do the actual work. mutt_FormatString will callback to ++ * us using cb_format_str() for the sidebar specific formatting characters. ++ */ ++static void make_sidebar_entry (char *buf, unsigned int buflen, int width, char *box, ++ BUFFY *b) +{ -+ BUFFY* tmp = CurBuffy = Incoming; ++ struct sidebar_entry sbe; + -+ if (!Incoming) ++ if (!buf || !box || !b) + return; + -+ while(1) { -+ if(!strcmp(tmp->path, buf)) { -+ CurBuffy = tmp; -+ break; -+ } ++ sbe.buffy = b; ++ strfcpy (sbe.box, box, sizeof (sbe.box)); + -+ if(tmp->next) -+ tmp = tmp->next; -+ else -+ break; ++ /* Temporarily lie about the screen width */ ++ int oc = COLS; ++ COLS = width + SidebarWidth; ++ mutt_FormatString (buf, buflen, 0, NONULL(SidebarFormat), cb_format_str, (unsigned long) &sbe, 0); ++ COLS = oc; ++ ++ /* Force string to be exactly the right width */ ++ int w = mutt_strwidth (buf); ++ int s = strlen (buf); ++ width = MIN(buflen, width); ++ if (w < width) ++ { ++ /* Pad with spaces */ ++ memset (buf + s, ' ', width - w); ++ buf[s + width - w] = 0; ++ } ++ else if (w > width) ++ { ++ /* Truncate to fit */ ++ int len = mutt_wstr_trunc (buf, buflen, width, NULL); ++ buf[len] = 0; + } +} + -+int draw_sidebar(int menu) { ++/** ++ * cb_qsort_buffy - qsort callback to sort BUFFYs ++ * @a: First BUFFY to compare ++ * @b: Second BUFFY to compare ++ * ++ * Compare the paths of two BUFFYs taking the locale into account. ++ * ++ * Returns: ++ * -1: a precedes b ++ * 0: a and b are identical ++ * 1: b precedes a ++ */ ++static int cb_qsort_buffy (const void *a, const void *b) ++{ ++ const BUFFY *b1 = *(const BUFFY **) a; ++ const BUFFY *b2 = *(const BUFFY **) b; + -+ int lines = option(OPTHELP) ? 1 : 0; -+ BUFFY *tmp; -+#ifndef USE_SLANG_CURSES -+ attr_t attrs; -+#endif -+ short delim_len = strlen(SidebarDelim); -+ short color_pair; ++ /* Special case -- move hidden BUFFYs to the end */ ++ if (b1->is_hidden != b2->is_hidden) ++ { ++ if (b1->is_hidden) ++ return 1; ++ else ++ return -1; ++ } + -+ static bool initialized = false; -+ static int prev_show_value; -+ static short saveSidebarWidth; ++ int result = 0; + -+ /* initialize first time */ -+ if(!initialized) { -+ prev_show_value = option(OPTSIDEBAR); -+ saveSidebarWidth = SidebarWidth; -+ if(!option(OPTSIDEBAR)) SidebarWidth = 0; -+ initialized = true; -+ } ++ switch ((SidebarSortMethod & SORT_MASK)) ++ { ++ case SORT_COUNT: ++ result = (b2->msg_count - b1->msg_count); ++ break; ++ case SORT_COUNT_NEW: ++ result = (b2->msg_unread - b1->msg_unread); ++ break; ++ case SORT_FLAGGED: ++ result = (b2->msg_flagged - b1->msg_flagged); ++ break; ++ case SORT_PATH: ++ result = mutt_strcasecmp (b1->path, b2->path); ++ break; ++ } + -+ /* save or restore the value SidebarWidth */ -+ if(prev_show_value != option(OPTSIDEBAR)) { -+ if(prev_show_value && !option(OPTSIDEBAR)) { -+ saveSidebarWidth = SidebarWidth; -+ SidebarWidth = 0; -+ } else if(!prev_show_value && option(OPTSIDEBAR)) { -+ SidebarWidth = saveSidebarWidth; -+ } -+ prev_show_value = option(OPTSIDEBAR); -+ } ++ if (SidebarSortMethod & SORT_REVERSE) ++ result = -result; + ++ return result; ++} + -+// if ( SidebarWidth == 0 ) return 0; -+ if (SidebarWidth > 0 && option (OPTSIDEBAR) -+ && delim_len >= SidebarWidth) { -+ unset_option (OPTSIDEBAR); -+ /* saveSidebarWidth = SidebarWidth; */ -+ if (saveSidebarWidth > delim_len) { -+ SidebarWidth = saveSidebarWidth; -+ mutt_error (_("Value for sidebar_delim is too long. Disabling sidebar.")); -+ sleep (2); -+ } else { -+ SidebarWidth = 0; -+ mutt_error (_("Value for sidebar_delim is too long. Disabling sidebar. Please set your sidebar_width to a sane value.")); -+ sleep (4); /* the advise to set a sane value should be seen long enough */ -+ } -+ saveSidebarWidth = 0; -+ return (0); -+ } ++/** ++ * buffy_going - Prevent our pointers becoming invalid ++ * @b: BUFFY about to be deleted ++ * ++ * If we receive a delete-notification for a BUFFY, we need to change any ++ * pointers we have to reference a different BUFFY, or set them to NULL. ++ * ++ * We don't update the prev/next pointers, they'll be fixed on the next ++ * call to prepare_sidebar(). ++ * ++ * Returns: ++ * A valid alternative BUFFY, or NULL ++ */ ++static BUFFY *buffy_going (const BUFFY *b) ++{ ++ if (!b) ++ return NULL; + -+ if ( SidebarWidth == 0 || !option(OPTSIDEBAR)) { -+ if (SidebarWidth > 0) { -+ saveSidebarWidth = SidebarWidth; -+ SidebarWidth = 0; -+ } -+ unset_option(OPTSIDEBAR); -+ return 0; ++ if (b->prev) ++ { ++ b->prev->next = NULL; ++ } ++ ++ if (b->next) ++ { ++ b->next->prev = NULL; ++ return b->next; ++ } ++ ++ return b->prev; ++} ++ ++/** ++ * update_buffy_visibility - Should a BUFFY be displayed in the sidebar ++ * @arr: array of BUFFYs ++ * @arr_len: number of BUFFYs in array ++ * ++ * For each BUFFY in the array, check whether we should display it. ++ * This is determined by several criteria. If the BUFFY: ++ * is the currently open mailbox ++ * is the currently highlighted mailbox ++ * has unread messages ++ * has flagged messages ++ * is whitelisted ++ */ ++static void update_buffy_visibility (BUFFY **arr, int arr_len) ++{ ++ if (!arr) ++ return; ++ ++ short new_only = option (OPTSIDEBARNEWMAILONLY); ++ ++ BUFFY *b; ++ int i; ++ for (i = 0; i < arr_len; i++) ++ { ++ b = arr[i]; ++ ++ b->is_hidden = 0; ++ ++ if (!new_only) ++ continue; ++ ++ if ((b == OpnBuffy) || (b->msg_unread > 0) || ++ (b == HilBuffy) || (b->msg_flagged > 0)) ++ continue; ++ ++ if (Context && (strcmp (b->path, Context->path) == 0)) ++ /* Spool directory */ ++ continue; ++ ++ if (mutt_find_list (SidebarWhitelist, b->path)) ++ /* Explicitly asked to be visible */ ++ continue; ++ ++ b->is_hidden = 1; ++ } ++} ++ ++/** ++ * sort_buffy_array - Sort an array of BUFFY pointers ++ * @arr: array of BUFFYs ++ * @arr_len: number of BUFFYs in array ++ * ++ * Sort an array of BUFFY pointers according to the current sort config ++ * option "sidebar_sort_method". This calls qsort to do the work which calls our ++ * callback function "cb_qsort_buffy". ++ * ++ * Once sorted, the prev/next links will be reconstructed. ++ */ ++static void sort_buffy_array (BUFFY **arr, int arr_len) ++{ ++ if (!arr) ++ return; ++ ++ /* These are the only sort methods we understand */ ++ short ssm = (SidebarSortMethod & SORT_MASK); ++ if ((ssm == SORT_COUNT) || ++ (ssm == SORT_COUNT_NEW) || ++ (ssm == SORT_DESC) || ++ (ssm == SORT_FLAGGED) || ++ (ssm == SORT_PATH)) ++ qsort (arr, arr_len, sizeof (*arr), cb_qsort_buffy); ++ ++ int i; ++ for (i = 0; i < (arr_len - 1); i++) ++ arr[i]->next = arr[i + 1]; ++ arr[arr_len - 1]->next = NULL; ++ ++ for (i = 1; i < arr_len; i++) ++ arr[i]->prev = arr[i - 1]; ++ arr[0]->prev = NULL; ++} ++ ++/** ++ * prepare_sidebar - Prepare the list of BUFFYs for the sidebar display ++ * @page_size: The number of lines on a page ++ * ++ * Before painting the sidebar, we count the BUFFYs, determine which are ++ * visible, sort them and set up our page pointers. ++ * ++ * This is a lot of work to do each refresh, but there are many things that ++ * can change outside of the sidebar that we don't hear about. ++ * ++ * Returns: ++ * 0: No, don't draw the sidebar ++ * 1: Yes, draw the sidebar ++ */ ++static int prepare_sidebar (int page_size) ++{ ++ BUFFY *b = Incoming; ++ if (!b) ++ return 0; ++ ++ int count = 0; ++ for (; b; b = b->next) ++ count++; ++ ++ BUFFY **arr = safe_malloc (count * sizeof (*arr)); ++ ++ int i = 0; ++ for (b = Incoming; b; b = b->next, i++) ++ arr[i] = b; ++ ++ update_buffy_visibility (arr, count); ++ sort_buffy_array (arr, count); ++ ++ Incoming = arr[0]; ++ ++ int top_index = 0; ++ int opn_index = -1; ++ int hil_index = -1; ++ int bot_index = -1; ++ ++ for (i = 0; i < count; i++) ++ { ++ if (OpnBuffy == arr[i]) ++ opn_index = i; ++ if (HilBuffy == arr[i]) ++ hil_index = i; ++ } ++ ++ if (!HilBuffy || (SidebarSortMethod != PreviousSort)) ++ { ++ if (OpnBuffy) ++ { ++ HilBuffy = OpnBuffy; ++ hil_index = opn_index; ++ } ++ else ++ { ++ HilBuffy = arr[0]; ++ hil_index = 0; ++ } ++ } ++ if (TopBuffy) ++ top_index = (hil_index / page_size) * page_size; ++ else ++ top_index = hil_index; ++ TopBuffy = arr[top_index]; ++ ++ bot_index = top_index + page_size - 1; ++ if (bot_index > (count - 1)) ++ bot_index = count - 1; ++ BotBuffy = arr[bot_index]; ++ ++ Outgoing = arr[count - 1]; ++ ++ PreviousSort = SidebarSortMethod; ++ FREE (&arr); ++ return 1; ++} ++ ++/** ++ * visible - Should we display the sidebar? ++ * ++ * After validating the config options "sidebar_visible" and "sidebar_width", ++ * determine whether we should should display the sidebar. ++ * ++ * When not visible, set the global SidebarWidth to 0. ++ * ++ * Returns: ++ * Boolean ++ */ ++static short ++visible (void) ++{ ++ short new_visible = option (OPTSIDEBAR); ++ short new_width = SidebarWidth; ++ ++ if (OldWidth != new_width) ++ { ++ if (new_width > 0) ++ { ++ OldWidth = new_width; ++ } ++ } ++ ++ if (OldVisible != new_visible) ++ { ++ if (new_visible) ++ { ++ set_option (OPTSIDEBAR); ++ } ++ else ++ { ++ unset_option (OPTSIDEBAR); ++ } ++ OldVisible = new_visible; ++ } ++ else if (new_width == 0) ++ { ++ unset_option (OPTSIDEBAR); ++ OldVisible = 0; ++ } ++ ++ if (!option (OPTSIDEBAR)) ++ { ++ SidebarWidth = 0; ++ } ++ else if (new_width == 0) ++ { ++ SidebarWidth = OldWidth; ++ } ++ else ++ { ++ SidebarWidth = new_width; ++ } ++ ++ return new_visible; ++} ++ ++/** ++ * draw_divider - Draw a line between the sidebar and the rest of mutt ++ * @first_row: Screen line to start (0-based) ++ * @num_rows: Number of rows to fill ++ * ++ * Draw a divider using characters from the config option "sidebar_divider_char". ++ * This can be an ASCII or Unicode character. First we calculate this ++ * characters' width in screen columns, then subtract that from the config ++ * option "sidebar_width". ++ * ++ * Returns: ++ * -1: Error: bad character, etc ++ * 0: Error: 0 width character ++ * n: Success: character occupies n screen columns ++ */ ++static int draw_divider (int first_row, int num_rows) ++{ ++ /* Calculate the width of the delimiter in screen cells */ ++ int delim_len = mutt_strwidth (SidebarDividerChar); ++ ++ if (delim_len < 1) ++ return delim_len; ++ ++ if ((SidebarWidth + delim_len) > (COLS + 1)) ++ return 0; ++ ++ if (delim_len > SidebarWidth) ++ return -1; ++ ++ SETCOLOR(MT_COLOR_DIVIDER); ++ ++ int i; ++ for (i = 0; i < num_rows; i++) ++ { ++ move (first_row + i, SidebarWidth - delim_len); ++ addstr (NONULL(SidebarDividerChar)); ++ } ++ ++ return delim_len; ++} ++ ++/** ++ * fill_empty_space - Wipe the remaining Sidebar space ++ * @first_row: Screen line to start (0-based) ++ * @num_rows: Number of rows to fill ++ * @width: Width of the Sidebar (minus the divider) ++ * ++ * Write spaces over the area the sidebar isn't using. ++ */ ++static void fill_empty_space (int first_row, int num_rows, int width) ++{ ++ /* Fill the remaining rows with blank space */ ++ SETCOLOR(MT_COLOR_NORMAL); ++ ++ int r; ++ for (r = 0; r < num_rows; r++) ++ { ++ int i = 0; ++ move (first_row + r, 0); ++ for (; i < width; i++) ++ addch (' '); ++ } ++} ++ ++/** ++ * draw_sidebar - Write out a list of mailboxes, on the left ++ * @first_row: Screen line to start (0-based) ++ * @num_rows: Number of rows to fill ++ * @div_width: Width in screen characters taken by the divider ++ * ++ * Display a list of mailboxes in a panel on the left. What's displayed will ++ * depend on our index markers: TopBuffy, OpnBuffy, HilBuffy, BotBuffy. ++ * On the first run they'll be NULL, so we display the top of Mutt's list ++ * (Incoming). ++ * ++ * TopBuffy - first visible mailbox ++ * BotBuffy - last visible mailbox ++ * OpnBuffy - mailbox shown in Mutt's Index Panel ++ * HilBuffy - Unselected mailbox (the paging follows this) ++ * ++ * The entries are formatted using "sidebar_format" and may be abbreviated: ++ * "sidebar_short_path", indented: "sidebar_folder_indent", ++ * "sidebar_indent_string" and sorted: "sidebar_sort_method". Finally, they're ++ * trimmed to fit the available space. ++ */ ++static void draw_sidebar (int first_row, int num_rows, int div_width) ++{ ++ BUFFY *b = TopBuffy; ++ if (!b) ++ return; ++ ++ int w = MIN(COLS, (SidebarWidth - div_width)); ++ int row = 0; ++ for (b = TopBuffy; b && (row < num_rows); b = b->next) ++ { ++ if (b->is_hidden) ++ continue; ++ ++ if (b == OpnBuffy) ++ { ++ if ((ColorDefs[MT_COLOR_SB_INDICATOR] != 0)) ++ SETCOLOR(MT_COLOR_SB_INDICATOR); ++ else ++ SETCOLOR(MT_COLOR_INDICATOR); ++ } ++ else if (b == HilBuffy) ++ SETCOLOR(MT_COLOR_HIGHLIGHT); ++ else if ((ColorDefs[MT_COLOR_SB_SPOOLFILE] != 0) && ++ (mutt_strcmp (b->path, Spoolfile) == 0)) ++ SETCOLOR(MT_COLOR_SB_SPOOLFILE); ++ else if (b->msg_unread > 0) ++ SETCOLOR(MT_COLOR_NEW); ++ else if (b->msg_flagged > 0) ++ SETCOLOR(MT_COLOR_FLAGGED); ++ else ++ SETCOLOR(MT_COLOR_NORMAL); ++ ++ move (first_row + row, 0); ++ if (Context && Context->path && ++ (!strcmp (b->path, Context->path)|| ++ !strcmp (b->realpath, Context->path))) ++ { ++ b->msg_unread = Context->unread; ++ b->msg_count = Context->msgcount; ++ b->msg_flagged = Context->flagged; + } + -+ /* get attributes for divider */ -+ SETCOLOR(MT_COLOR_STATUS); -+#ifndef USE_SLANG_CURSES -+ attr_get(&attrs, &color_pair, 0); -+#else -+ color_pair = attr_get(); -+#endif -+ SETCOLOR(MT_COLOR_NORMAL); ++ /* compute length of Maildir without trailing separator */ ++ size_t maildirlen = strlen (Maildir); ++ if (SidebarDelimChars && strchr (SidebarDelimChars, Maildir[maildirlen - 1])) ++ maildirlen--; + -+ /* draw the divider */ ++ /* check whether Maildir is a prefix of the current folder's path */ ++ short maildir_is_prefix = 0; ++ if ((strlen (b->path) > maildirlen) && (strncmp (Maildir, b->path, maildirlen) == 0)) ++ maildir_is_prefix = 1; + -+ for ( ; lines < LINES-1-(menu != MENU_PAGER || option(OPTSTATUSONTOP)); lines++ ) { -+ move(lines, SidebarWidth - delim_len); -+ addstr(NONULL(SidebarDelim)); -+#ifndef USE_SLANG_CURSES -+ mvchgat(lines, SidebarWidth - delim_len, delim_len, 0, color_pair, NULL); -+#endif -+ } -+ -+ if ( Incoming == 0 ) return 0; -+ lines = option(OPTHELP) ? 1 : 0; /* go back to the top */ -+ -+ if ( known_lines != LINES || TopBuffy == 0 || BottomBuffy == 0 ) -+ calc_boundaries(menu); -+ if ( CurBuffy == 0 ) CurBuffy = Incoming; -+ -+ tmp = TopBuffy; -+ -+ SETCOLOR(MT_COLOR_NORMAL); -+ -+ for ( ; tmp && lines < LINES-1 - (menu != MENU_PAGER || option(OPTSTATUSONTOP)); tmp = tmp->next ) { -+ if ( tmp == CurBuffy ) -+ SETCOLOR(MT_COLOR_INDICATOR); -+ else if ( tmp->msg_unread > 0 ) -+ SETCOLOR(MT_COLOR_NEW); -+ else if ( tmp->msg_flagged > 0 ) -+ SETCOLOR(MT_COLOR_FLAGGED); -+ else -+ SETCOLOR(MT_COLOR_NORMAL); -+ -+ move( lines, 0 ); -+ if ( Context && !strcmp( tmp->path, Context->path ) ) { -+ tmp->msg_unread = Context->unread; -+ tmp->msgcount = Context->msgcount; -+ tmp->msg_flagged = Context->flagged; -+ } -+ // check whether Maildir is a prefix of the current folder's path -+ short maildir_is_prefix = 0; -+ if ( (strlen(tmp->path) > strlen(Maildir)) && -+ (strncmp(Maildir, tmp->path, strlen(Maildir)) == 0) ) -+ maildir_is_prefix = 1; -+ // calculate depth of current folder and generate its display name with indented spaces -+ int sidebar_folder_depth = 0; -+ char *sidebar_folder_name; -+ sidebar_folder_name = basename(tmp->path); -+ if ( maildir_is_prefix ) { -+ char *tmp_folder_name; -+ int i; -+ tmp_folder_name = tmp->path + strlen(Maildir); -+ for (i = 0; i < strlen(tmp->path) - strlen(Maildir); i++) { -+ if (tmp_folder_name[i] == '/') sidebar_folder_depth++; -+ } -+ if (sidebar_folder_depth > 0) { -+ sidebar_folder_name = malloc(strlen(basename(tmp->path)) + sidebar_folder_depth + 1); -+ for (i=0; i < sidebar_folder_depth; i++) -+ sidebar_folder_name[i]=' '; -+ sidebar_folder_name[i]=0; -+ strncat(sidebar_folder_name, basename(tmp->path), strlen(basename(tmp->path)) + sidebar_folder_depth); -+ } -+ } -+ printw( "%.*s", SidebarWidth - delim_len + 1, -+ make_sidebar_entry(sidebar_folder_name, tmp->msgcount, -+ tmp->msg_unread, tmp->msg_flagged)); -+ if (sidebar_folder_depth > 0) -+ free(sidebar_folder_name); -+ lines++; -+ } -+ SETCOLOR(MT_COLOR_NORMAL); -+ for ( ; lines < LINES-1 - (menu != MENU_PAGER || option(OPTSTATUSONTOP)); lines++ ) { -+ int i = 0; -+ move( lines, 0 ); -+ for ( ; i < SidebarWidth - delim_len; i++ ) -+ addch(' '); -+ } -+ return 0; -+} -+ -+ -+void set_buffystats(CONTEXT* Context) -+{ -+ BUFFY *tmp = Incoming; -+ while(tmp) { -+ if(Context && !strcmp(tmp->path, Context->path)) { -+ tmp->msg_unread = Context->unread; -+ tmp->msgcount = Context->msgcount; -+ break; -+ } -+ tmp = tmp->next; ++ /* calculate depth of current folder and generate its display name with indented spaces */ ++ int sidebar_folder_depth = 0; ++ char *sidebar_folder_name; ++ int i; ++ if (option (OPTSIDEBARSHORTPATH)) ++ { ++ /* disregard a trailing separator, so strlen() - 2 */ ++ sidebar_folder_name = b->path; ++ for (i = strlen (sidebar_folder_name) - 2; i >= 0; i--) ++ { ++ if (SidebarDelimChars && ++ strchr (SidebarDelimChars, sidebar_folder_name[i])) ++ { ++ sidebar_folder_name += (i + 1); ++ break; + } ++ } ++ } ++ else ++ sidebar_folder_name = b->path + maildir_is_prefix * (maildirlen + 1); ++ ++ if (maildir_is_prefix && option (OPTSIDEBARFOLDERINDENT)) ++ { ++ const char *tmp_folder_name; ++ int lastsep = 0; ++ tmp_folder_name = b->path + maildirlen + 1; ++ int tmplen = (int) strlen (tmp_folder_name) - 1; ++ for (i = 0; i < tmplen; i++) ++ { ++ if (SidebarDelimChars && strchr (SidebarDelimChars, tmp_folder_name[i])) ++ { ++ sidebar_folder_depth++; ++ lastsep = i + 1; ++ } ++ } ++ if (sidebar_folder_depth > 0) ++ { ++ if (option (OPTSIDEBARSHORTPATH)) ++ tmp_folder_name += lastsep; /* basename */ ++ sidebar_folder_name = malloc (strlen (tmp_folder_name) + sidebar_folder_depth*strlen (NONULL(SidebarIndentString)) + 1); ++ sidebar_folder_name[0]=0; ++ for (i=0; i < sidebar_folder_depth; i++) ++ strncat (sidebar_folder_name, NONULL(SidebarIndentString), strlen (NONULL(SidebarIndentString))); ++ strncat (sidebar_folder_name, tmp_folder_name, strlen (tmp_folder_name)); ++ } ++ } ++ char str[STRING]; ++ make_sidebar_entry (str, sizeof (str), w, sidebar_folder_name, b); ++ printw ("%s", str); ++ if (sidebar_folder_depth > 0) ++ FREE (&sidebar_folder_name); ++ row++; ++ } ++ ++ fill_empty_space (first_row + row, num_rows - row, w); +} + -+void scroll_sidebar(int op, int menu) ++ ++/** ++ * mutt_sb_init - Set some default values for the sidebar. ++ */ ++void ++mutt_sb_init (void) +{ -+ if(!SidebarWidth) return; -+ if(!CurBuffy) return; -+ -+ switch (op) { -+ case OP_SIDEBAR_NEXT: -+ if ( CurBuffy->next == NULL ) return; -+ CurBuffy = CurBuffy->next; -+ break; -+ case OP_SIDEBAR_PREV: -+ if ( CurBuffy->prev == NULL ) return; -+ CurBuffy = CurBuffy->prev; -+ break; -+ case OP_SIDEBAR_SCROLL_UP: -+ CurBuffy = TopBuffy; -+ if ( CurBuffy != Incoming ) { -+ calc_boundaries(menu); -+ CurBuffy = CurBuffy->prev; -+ } -+ break; -+ case OP_SIDEBAR_SCROLL_DOWN: -+ CurBuffy = BottomBuffy; -+ if ( CurBuffy->next ) { -+ calc_boundaries(menu); -+ CurBuffy = CurBuffy->next; -+ } -+ break; -+ default: -+ return; -+ } -+ calc_boundaries(menu); -+ draw_sidebar(menu); ++ OldVisible = option (OPTSIDEBAR); ++ if (SidebarWidth > 0) ++ { ++ OldWidth = SidebarWidth; ++ } ++ else ++ { ++ OldWidth = 20; ++ if (OldVisible) ++ { ++ SidebarWidth = OldWidth; ++ } ++ } +} + -diff --git a/sidebar.h b/sidebar.h -new file mode 100644 -index 0000000..d195f11 ---- /dev/null -+++ b/sidebar.h ++/** ++ * mutt_sb_draw - Completely redraw the sidebar ++ * ++ * Completely refresh the sidebar region. First draw the divider; then, for ++ * each BUFFY, call make_sidebar_entry; finally blank out any remaining space. ++ */ ++void mutt_sb_draw (void) ++{ ++ if (!visible()) ++ return; ++ ++ /* XXX - if transitioning from invisible to visible */ ++ /* if (OldVisible == 0) */ ++ /* mutt_buffy_check (1); we probably have bad or no numbers */ ++ ++ int x = getcurx (stdscr); ++ int y = getcury (stdscr); ++ ++ int first_row = 0; ++ int num_rows = LINES - 2; ++ ++ if (option (OPTHELP) || option (OPTSTATUSONTOP)) ++ first_row++; ++ ++ if (option (OPTHELP)) ++ num_rows--; ++ ++ int div_width = draw_divider (first_row, num_rows); ++ if (div_width < 0) ++ return; ++ ++ if (!Incoming) ++ { ++ int w = MIN(COLS, (SidebarWidth - div_width)); ++ fill_empty_space (first_row, num_rows, w); ++ return; ++ } ++ ++ if (!prepare_sidebar (num_rows)) ++ return; ++ ++ draw_sidebar (first_row, num_rows, div_width); ++ move (y, x); ++} ++ ++/** ++ * mutt_sb_should_refresh - Check if the sidebar is due to be refreshed ++ * ++ * The "sidebar_refresh_time" config option allows the user to limit the frequency ++ * with which the sidebar is refreshed. ++ * ++ * Returns: ++ * 1 Yes, refresh is due ++ * 0 No, refresh happened recently ++ */ ++int mutt_sb_should_refresh (void) ++{ ++ if (!option (OPTSIDEBAR)) ++ return 0; ++ ++ if (SidebarRefreshTime == 0) ++ return 0; ++ ++ time_t diff = (time (NULL) - LastRefresh); ++ ++ return (diff >= SidebarRefreshTime); ++} ++ ++/** ++ * mutt_sb_change_mailbox - Change the selected mailbox ++ * @op: Operation code ++ * ++ * Change the selected mailbox, e.g. "Next mailbox", "Previous Mailbox ++ * with new mail". The operations are listed OPS.SIDEBAR which is built ++ * into an enum in keymap_defs.h. ++ * ++ * If the operation is successful, HilBuffy will be set to the new mailbox. ++ * This function only *selects* the mailbox, doesn't *open* it. ++ * ++ * Allowed values are: OP_SIDEBAR_NEXT, OP_SIDEBAR_NEXT_NEW, ++ * OP_SIDEBAR_PAGE_DOWN, OP_SIDEBAR_PAGE_UP, OP_SIDEBAR_PREV, ++ * OP_SIDEBAR_PREV_NEW. ++ */ ++void mutt_sb_change_mailbox (int op) ++{ ++ BUFFY *b; ++ if (!HilBuffy) /* It'll get reset on the next draw */ ++ return; ++ ++ switch (op) ++ { ++ case OP_SIDEBAR_NEXT: ++ if (!HilBuffy->next) ++ return; ++ if (HilBuffy->next->is_hidden) ++ return; ++ HilBuffy = HilBuffy->next; ++ break; ++ case OP_SIDEBAR_NEXT_NEW: ++ b = find_next_new (option (OPTSIDEBARNEXTNEWWRAP)); ++ if (!b) ++ return; ++ else ++ HilBuffy = b; ++ break; ++ case OP_SIDEBAR_PAGE_DOWN: ++ HilBuffy = BotBuffy; ++ if (HilBuffy->next) ++ HilBuffy = HilBuffy->next; ++ break; ++ case OP_SIDEBAR_PAGE_UP: ++ HilBuffy = TopBuffy; ++ if (HilBuffy != Incoming) ++ HilBuffy = HilBuffy->prev; ++ break; ++ case OP_SIDEBAR_PREV: ++ if (!HilBuffy->prev) ++ return; ++ if (HilBuffy->prev->is_hidden) /* Can't happen, we've sorted the hidden to the end */ ++ return; ++ HilBuffy = HilBuffy->prev; ++ break; ++ case OP_SIDEBAR_PREV_NEW: ++ b = find_prev_new (option (OPTSIDEBARNEXTNEWWRAP)); ++ if (!b) ++ return; ++ else ++ HilBuffy = b; ++ break; ++ default: ++ return; ++ } ++ ++ /* We can change folder even if the sidebar is hidden */ ++ if (option (OPTSIDEBAR)) ++ mutt_sb_draw(); ++} ++ ++/** ++ * mutt_sb_set_buffystats - Update the BUFFY's message counts from the CONTEXT ++ * @ctx: A mailbox CONTEXT ++ * ++ * Given a mailbox CONTEXT, find a matching mailbox BUFFY and copy the message ++ * counts into it. ++ */ ++void mutt_sb_set_buffystats (const CONTEXT *ctx) ++{ ++ /* Even if the sidebar's hidden, ++ * we should take note of the new data. */ ++ BUFFY *b = Incoming; ++ if (!ctx || !b) ++ return; ++ ++ for (; b; b = b->next) ++ { ++ if (!strcmp (b->path, ctx->path) || ++ !strcmp (b->realpath, ctx->path)) ++ { ++ b->msg_unread = ctx->unread; ++ b->msg_count = ctx->msgcount; ++ b->msg_flagged = ctx->flagged; ++ break; ++ } ++ } ++} ++ ++/** ++ * mutt_sb_get_highlight - Get the BUFFY that's highlighted in the sidebar ++ * ++ * Get the path of the mailbox that's highlighted in the sidebar. ++ * ++ * Returns: ++ * Mailbox path ++ */ ++const char *mutt_sb_get_highlight (void) ++{ ++ if (!HilBuffy) ++ return NULL; ++ ++ return HilBuffy->path; ++} ++ ++/** ++ * mutt_sb_set_open_buffy - Set the OpnBuffy based on a mailbox path ++ * @path: Mailbox path ++ * ++ * Search through the list of mailboxes. If a BUFFY has a matching path, set ++ * OpnBuffy to it. ++ */ ++BUFFY *mutt_sb_set_open_buffy (const char *path) ++{ ++ /* Even if the sidebar is hidden */ ++ ++ BUFFY *b = Incoming; ++ ++ if (!path || !b) ++ return NULL; ++ ++ OpnBuffy = NULL; ++ ++ for (; b; b = b->next) ++ { ++ if (!strcmp (b->path, path) || ++ !strcmp (b->realpath, path)) ++ { ++ OpnBuffy = b; ++ HilBuffy = b; ++ break; ++ } ++ } ++ ++ return OpnBuffy; ++} ++ ++/** ++ * mutt_sb_set_update_time - Note the time that the sidebar was updated ++ * ++ * Update the timestamp representing the last sidebar update. If the user ++ * configures "sidebar_refresh_time", this will help to reduce traffic. ++ */ ++void mutt_sb_set_update_time (void) ++{ ++ /* XXX - should this be public? */ ++ ++ LastRefresh = time (NULL); ++} ++ ++/** ++ * mutt_sb_notify_mailbox - The state of a BUFFY is about to change ++ * ++ * We receive a notification: ++ * After a new BUFFY has been created ++ * Before a BUFFY is deleted ++ * ++ * Before a deletion, check that our pointers won't be invalidated. ++ */ ++void mutt_sb_notify_mailbox (BUFFY *b, int created) ++{ ++ if (!b) ++ return; ++ ++ /* Any new/deleted mailboxes will cause a refresh. As long as ++ * they're valid, our pointers will be updated in prepare_sidebar() */ ++ ++ if (created) ++ { ++ if (!TopBuffy) ++ TopBuffy = b; ++ if (!HilBuffy) ++ HilBuffy = b; ++ if (!BotBuffy) ++ BotBuffy = b; ++ if (!Outgoing) ++ Outgoing = b; ++ if (!OpnBuffy && Context) ++ { ++ /* This might happen if the user "unmailboxes *", then ++ * "mailboxes" our current mailbox back again */ ++ if (mutt_strcmp (b->path, Context->path) == 0) ++ OpnBuffy = b; ++ } ++ } ++ else ++ { ++ BUFFY *replacement = buffy_going (b); ++ if (TopBuffy == b) ++ TopBuffy = replacement; ++ if (OpnBuffy == b) ++ OpnBuffy = NULL; ++ if (HilBuffy == b) ++ HilBuffy = replacement; ++ if (BotBuffy == b) ++ BotBuffy = replacement; ++ if (Outgoing == b) ++ Outgoing = replacement; ++ } ++} +diff -urN mutt-1.6.1/sidebar.h mutt-1.6.1-sidebar/sidebar.h +--- mutt-1.6.1/sidebar.h 1970-01-01 01:00:00.000000000 +0100 ++++ mutt-1.6.1-sidebar/sidebar.h 2016-06-12 18:43:03.967503185 +0100 @@ -0,0 +1,36 @@ -+/* -+ * Copyright (C) ????-2004 Justin Hibbits ++/* Copyright (C) 2004 Justin Hibbits + * Copyright (C) 2004 Thomer M. Gil -+ * ++ * Copyright (C) 2015-2016 Richard Russon ++ * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. -+ */ ++ */ + +#ifndef SIDEBAR_H +#define SIDEBAR_H + -+struct MBOX_LIST { -+ char *path; -+ int msgcount; -+ int new; -+} MBLIST; ++#include "mutt.h" ++#include "buffy.h" + -+/* parameter is whether or not to go to the status line */ -+/* used for omitting the last | that covers up the status bar in the index */ -+int draw_sidebar(int); -+void scroll_sidebar(int, int); -+void set_curbuffy(char*); -+void set_buffystats(CONTEXT*); ++void mutt_sb_change_mailbox (int op); ++void mutt_sb_draw (void); ++const char * mutt_sb_get_highlight (void); ++void mutt_sb_init (void); ++void mutt_sb_notify_mailbox (BUFFY *b, int created); ++void mutt_sb_set_buffystats (const CONTEXT *ctx); ++BUFFY * mutt_sb_set_open_buffy (const char *path); ++void mutt_sb_set_update_time (void); ++int mutt_sb_should_refresh (void); + +#endif /* SIDEBAR_H */ +diff -urN mutt-1.6.1/sort.h mutt-1.6.1-sidebar/sort.h +--- mutt-1.6.1/sort.h 2016-06-12 18:43:00.415447793 +0100 ++++ mutt-1.6.1-sidebar/sort.h 2016-06-12 18:43:03.968503200 +0100 +@@ -31,6 +31,12 @@ + #define SORT_KEYID 12 + #define SORT_TRUST 13 + #define SORT_SPAM 14 ++#define SORT_COUNT 15 ++#define SORT_COUNT_NEW 16 ++#define SORT_DESC 17 ++#define SORT_FLAGGED 18 ++#define SORT_PATH 19 ++ + /* dgc: Sort & SortAux are shorts, so I'm bumping these bitflags up from + * bits 4 & 5 to bits 8 & 9 to make room for more sort keys in the future. */ + #define SORT_MASK 0xff +@@ -50,6 +56,7 @@ + WHERE short Sort INITVAL (SORT_DATE); + WHERE short SortAux INITVAL (SORT_DATE); /* auxiliary sorting method */ + WHERE short SortAlias INITVAL (SORT_ALIAS); ++WHERE short SidebarSortMethod INITVAL (SORT_ORDER); + + /* FIXME: This one does not belong to here */ + WHERE short PgpSortKeys INITVAL (SORT_ADDRESS); diff --git a/pkgs/applications/networking/mailreaders/mutt/trash-folder.patch b/pkgs/applications/networking/mailreaders/mutt/trash-folder.patch deleted file mode 100644 index ce47b0c30e5..00000000000 --- a/pkgs/applications/networking/mailreaders/mutt/trash-folder.patch +++ /dev/null @@ -1,316 +0,0 @@ -From: Cedric Duval -Date: Thu, 27 Feb 2014 12:27:41 +0100 -Subject: trash-folder - -With this patch, if the trash variable is set to a path (unset by default), the -deleted mails will be moved to a trash folder instead of being irremediably -purged when syncing the mailbox. - -For instance, set trash="~/Mail/trash" will cause every deleted mail to go to -this folder. - -Note that the append to the trash folder doesn't occur until the resync is -done. This allows you to change your mind and undo deletes, and thus the moves -to the trash folder are unnecessary. - -Notes - - * You might also want to have a look at the purge message feature below - which is related to this patch. - * IMAP is now supported. To retain the previous behavior, add this to your - muttrc: - folder-hook ^imap:// 'unset trash' - -FAQ - -Every once in a while, someone asks what are the advantages of this patch over -a macro based solution. Here's an attempt to answer this question: - - * The folder history doesn't clutter up with unwanted trash entries. - * Delayed move to the trash allows to change one's mind. - * No need to treat the case of "normal folders" and trash folders - separately with folder-hooks, and to create two sets of macros (one for - the index, one for the pager). - * Works not only with delete-message, but also with every deletion - functions like delete-pattern, delete-thread or delete-subthread. - -To sum up, it's more integrated and transparent to the user. - -* Patch last synced with upstream: - - Date: 2007-02-15 - - File: http://cedricduval.free.fr/mutt/patches/download/patch-1.5.5.1.cd.trash_folder.3.4 - -* Changes made: - - Updated to 1.5.13: - - structure of _mutt_save_message changed (commands.c) - - context of option (OPTCONFIRMAPPEND) changed (muttlib.c) - - Fixed indentation of "appended" in mutt.h. - -Signed-off-by: Matteo F. Vescovi - -Gbp-Pq: Topic features ---- - commands.c | 1 + - flags.c | 19 +++++++++++++++++- - globals.h | 1 + - imap/message.c | 2 ++ - init.h | 10 ++++++++++ - mutt.h | 3 +++ - muttlib.c | 4 +++- - mx.c | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - postpone.c | 3 +++ - 9 files changed, 103 insertions(+), 2 deletions(-) - -diff --git a/commands.c b/commands.c -index 5dbd100..7fd014b 100644 ---- a/commands.c -+++ b/commands.c -@@ -720,6 +720,7 @@ int _mutt_save_message (HEADER *h, CONTEXT *ctx, int delete, int decode, int dec - if (option (OPTDELETEUNTAG)) - mutt_set_flag (Context, h, M_TAG, 0); - } -+ mutt_set_flag (Context, h, M_APPENDED, 1); - - return 0; - } -diff --git a/flags.c b/flags.c -index f0f3d81..dfa6a50 100644 ---- a/flags.c -+++ b/flags.c -@@ -65,7 +65,13 @@ void _mutt_set_flag (CONTEXT *ctx, HEADER *h, int flag, int bf, int upd_ctx) - { - h->deleted = 0; - update = 1; -- if (upd_ctx) ctx->deleted--; -+ if (upd_ctx) -+ { -+ ctx->deleted--; -+ if (h->appended) -+ ctx->appended--; -+ } -+ h->appended = 0; /* when undeleting, also reset the appended flag */ - #ifdef USE_IMAP - /* see my comment above */ - if (ctx->magic == M_IMAP) -@@ -87,6 +93,17 @@ void _mutt_set_flag (CONTEXT *ctx, HEADER *h, int flag, int bf, int upd_ctx) - } - break; - -+ case M_APPENDED: -+ if (bf) -+ { -+ if (!h->appended) -+ { -+ h->appended = 1; -+ if (upd_ctx) ctx->appended++; -+ } -+ } -+ break; -+ - case M_NEW: - - if (!mutt_bit_isset(ctx->rights,M_ACL_SEEN)) -diff --git a/globals.h b/globals.h -index e77030c..6a1b8da 100644 ---- a/globals.h -+++ b/globals.h -@@ -144,6 +144,7 @@ WHERE char *Tochars; - WHERE char *TSStatusFormat; - WHERE char *TSIconFormat; - WHERE short TSSupported; -+WHERE char *TrashPath; - WHERE char *Username; - WHERE char *Visual; - -diff --git a/imap/message.c b/imap/message.c -index 3877381..039fda6 100644 ---- a/imap/message.c -+++ b/imap/message.c -@@ -884,6 +884,7 @@ int imap_copy_messages (CONTEXT* ctx, HEADER* h, char* dest, int delete) - if (ctx->hdrs[n]->tagged) - { - mutt_set_flag (ctx, ctx->hdrs[n], M_DELETE, 1); -+ mutt_set_flag (ctx, ctx->hdrs[n], M_APPENDED, 1); - if (option (OPTDELETEUNTAG)) - mutt_set_flag (ctx, ctx->hdrs[n], M_TAG, 0); - } -@@ -891,6 +892,7 @@ int imap_copy_messages (CONTEXT* ctx, HEADER* h, char* dest, int delete) - else - { - mutt_set_flag (ctx, h, M_DELETE, 1); -+ mutt_set_flag (ctx, h, M_APPENDED, 1); - if (option (OPTDELETEUNTAG)) - mutt_set_flag (ctx, h, M_TAG, 0); - } -diff --git a/init.h b/init.h -index 6b49341..d3206f9 100644 ---- a/init.h -+++ b/init.h -@@ -3341,6 +3341,16 @@ struct option_t MuttVars[] = { - ** provided that ``$$ts_enabled'' has been set. This string is identical in - ** formatting to the one used by ``$$status_format''. - */ -+ { "trash", DT_PATH, R_NONE, UL &TrashPath, 0 }, -+ /* -+ ** .pp -+ ** If set, this variable specifies the path of the trash folder where the -+ ** mails marked for deletion will be moved, instead of being irremediably -+ ** purged. -+ ** .pp -+ ** NOTE: When you delete a message in the trash folder, it is really -+ ** deleted, so that you have a way to clean the trash. -+ */ - #ifdef USE_SOCKET - { "tunnel", DT_STR, R_NONE, UL &Tunnel, UL 0 }, - /* -diff --git a/mutt.h b/mutt.h -index f8565fa..29bb6c2 100644 ---- a/mutt.h -+++ b/mutt.h -@@ -185,6 +185,7 @@ enum - M_DELETE, - M_UNDELETE, - M_DELETED, -+ M_APPENDED, - M_FLAG, - M_TAG, - M_UNTAG, -@@ -713,6 +714,7 @@ typedef struct header - unsigned int mime : 1; /* has a MIME-Version header? */ - unsigned int flagged : 1; /* marked important? */ - unsigned int tagged : 1; -+ unsigned int appended : 1; /* has been saved */ - unsigned int deleted : 1; - unsigned int changed : 1; - unsigned int attach_del : 1; /* has an attachment marked for deletion */ -@@ -885,6 +887,7 @@ typedef struct _context - int new; /* how many new messages? */ - int unread; /* how many unread messages? */ - int deleted; /* how many deleted messages */ -+ int appended; /* how many saved messages? */ - int flagged; /* how many flagged messages */ - int msgnotreadyet; /* which msg "new" in pager, -1 if none */ - -diff --git a/muttlib.c b/muttlib.c -index 02067cc..0fd9766 100644 ---- a/muttlib.c -+++ b/muttlib.c -@@ -1505,7 +1505,9 @@ int mutt_save_confirm (const char *s, struct stat *st) - - if (magic > 0 && !mx_access (s, W_OK)) - { -- if (option (OPTCONFIRMAPPEND)) -+ if (option (OPTCONFIRMAPPEND) && -+ (!TrashPath || (mutt_strcmp (s, TrashPath) != 0))) -+ /* if we're appending to the trash, there's no point in asking */ - { - snprintf (tmp, sizeof (tmp), _("Append messages to %s?"), s); - if ((rc = mutt_yesorno (tmp, M_YES)) == M_NO) -diff --git a/mx.c b/mx.c -index 4c5cb07..c0a6d30 100644 ---- a/mx.c -+++ b/mx.c -@@ -776,6 +776,53 @@ static int sync_mailbox (CONTEXT *ctx, int *index_hint) - return rc; - } - -+/* move deleted mails to the trash folder */ -+static int trash_append (CONTEXT *ctx) -+{ -+ CONTEXT *ctx_trash; -+ int i = 0; -+ struct stat st, stc; -+ -+ if (!TrashPath || !ctx->deleted || -+ (ctx->magic == M_MAILDIR && option (OPTMAILDIRTRASH))) -+ return 0; -+ -+ for (;i < ctx->msgcount && (!ctx->hdrs[i]->deleted || -+ ctx->hdrs[i]->appended); i++); -+ if (i == ctx->msgcount) -+ return 0; /* nothing to be done */ -+ -+ if (mutt_save_confirm (TrashPath, &st) != 0) -+ { -+ mutt_error _("message(s) not deleted"); -+ return -1; -+ } -+ -+ if (lstat (ctx->path, &stc) == 0 && stc.st_ino == st.st_ino -+ && stc.st_dev == st.st_dev && stc.st_rdev == st.st_rdev) -+ return 0; /* we are in the trash folder: simple sync */ -+ -+ if ((ctx_trash = mx_open_mailbox (TrashPath, M_APPEND, NULL)) != NULL) -+ { -+ for (i = 0 ; i < ctx->msgcount ; i++) -+ if (ctx->hdrs[i]->deleted && !ctx->hdrs[i]->appended -+ && mutt_append_message (ctx_trash, ctx, ctx->hdrs[i], 0, 0) == -1) -+ { -+ mx_close_mailbox (ctx_trash, NULL); -+ return -1; -+ } -+ -+ mx_close_mailbox (ctx_trash, NULL); -+ } -+ else -+ { -+ mutt_error _("Can't open trash folder"); -+ return -1; -+ } -+ -+ return 0; -+} -+ - /* save changes and close mailbox */ - int mx_close_mailbox (CONTEXT *ctx, int *index_hint) - { -@@ -912,6 +959,7 @@ int mx_close_mailbox (CONTEXT *ctx, int *index_hint) - if (mutt_append_message (&f, ctx, ctx->hdrs[i], 0, CH_UPDATE_LEN) == 0) - { - mutt_set_flag (ctx, ctx->hdrs[i], M_DELETE, 1); -+ mutt_set_flag (ctx, ctx->hdrs[i], M_APPENDED, 1); - } - else - { -@@ -936,6 +984,14 @@ int mx_close_mailbox (CONTEXT *ctx, int *index_hint) - return 0; - } - -+ /* copy mails to the trash before expunging */ -+ if (purge && ctx->deleted && mutt_strcmp(ctx->path, TrashPath)) -+ if (trash_append (ctx) != 0) -+ { -+ ctx->closing = 0; -+ return -1; -+ } -+ - #ifdef USE_IMAP - /* allow IMAP to preserve the deleted flag across sessions */ - if (ctx->magic == M_IMAP) -@@ -1133,6 +1189,12 @@ int mx_sync_mailbox (CONTEXT *ctx, int *index_hint) - msgcount = ctx->msgcount; - deleted = ctx->deleted; - -+ if (purge && ctx->deleted && mutt_strcmp(ctx->path, TrashPath)) -+ { -+ if (trash_append (ctx) == -1) -+ return -1; -+ } -+ - #ifdef USE_IMAP - if (ctx->magic == M_IMAP) - rc = imap_sync_mailbox (ctx, purge, index_hint); -diff --git a/postpone.c b/postpone.c -index a703161..7a4cbb1 100644 ---- a/postpone.c -+++ b/postpone.c -@@ -277,6 +277,9 @@ int mutt_get_postponed (CONTEXT *ctx, HEADER *hdr, HEADER **cur, char *fcc, size - /* finished with this message, so delete it. */ - mutt_set_flag (PostContext, h, M_DELETE, 1); - -+ /* and consider it saved, so that it won't be moved to the trash folder */ -+ mutt_set_flag (PostContext, h, M_APPENDED, 1); -+ - /* update the count for the status display */ - PostCount = PostContext->msgcount - PostContext->deleted; - diff --git a/pkgs/applications/networking/mailreaders/mutt/trash.patch b/pkgs/applications/networking/mailreaders/mutt/trash.patch new file mode 100644 index 00000000000..a7bda4c4c8b --- /dev/null +++ b/pkgs/applications/networking/mailreaders/mutt/trash.patch @@ -0,0 +1,797 @@ +diff -urN mutt-1.6.1/commands.c mutt-1.6.1-trash/commands.c +--- mutt-1.6.1/commands.c 2016-06-12 18:43:00.397447512 +0100 ++++ mutt-1.6.1-trash/commands.c 2016-06-12 18:43:04.892517610 +0100 +@@ -720,6 +720,7 @@ + if (option (OPTDELETEUNTAG)) + mutt_set_flag (Context, h, M_TAG, 0); + } ++ mutt_set_flag (Context, h, M_APPENDED, 1); + + return 0; + } +diff -urN mutt-1.6.1/curs_main.c mutt-1.6.1-trash/curs_main.c +--- mutt-1.6.1/curs_main.c 2016-06-12 18:43:00.399447544 +0100 ++++ mutt-1.6.1-trash/curs_main.c 2016-06-12 18:43:04.895517656 +0100 +@@ -1919,6 +1919,7 @@ + MAYBE_REDRAW (menu->redraw); + break; + ++ case OP_PURGE_MESSAGE: + case OP_DELETE: + + CHECK_MSGCOUNT; +@@ -1930,6 +1931,7 @@ + if (tag) + { + mutt_tag_set_flag (M_DELETE, 1); ++ mutt_tag_set_flag (M_PURGED, (op != OP_PURGE_MESSAGE) ? 0 : 1); + if (option (OPTDELETEUNTAG)) + mutt_tag_set_flag (M_TAG, 0); + menu->redraw = REDRAW_INDEX; +@@ -1937,6 +1939,8 @@ + else + { + mutt_set_flag (Context, CURHDR, M_DELETE, 1); ++ mutt_set_flag (Context, CURHDR, M_PURGED, ++ (op != OP_PURGE_MESSAGE) ? 0 : 1); + if (option (OPTDELETEUNTAG)) + mutt_set_flag (Context, CURHDR, M_TAG, 0); + if (option (OPTRESOLVE)) +@@ -2242,11 +2246,13 @@ + if (tag) + { + mutt_tag_set_flag (M_DELETE, 0); ++ mutt_tag_set_flag (M_PURGED, 0); + menu->redraw = REDRAW_INDEX; + } + else + { + mutt_set_flag (Context, CURHDR, M_DELETE, 0); ++ mutt_set_flag (Context, CURHDR, M_PURGED, 0); + if (option (OPTRESOLVE) && menu->current < Context->vcount - 1) + { + menu->current++; +@@ -2268,9 +2274,11 @@ + CHECK_ACL(M_ACL_DELETE, _("Cannot undelete message(s)")); + + rc = mutt_thread_set_flag (CURHDR, M_DELETE, 0, +- op == OP_UNDELETE_THREAD ? 0 : 1); ++ op == OP_UNDELETE_THREAD ? 0 : 1) ++ + mutt_thread_set_flag (CURHDR, M_PURGED, 0, ++ (op == OP_UNDELETE_THREAD) ? 0 : 1); + +- if (rc != -1) ++ if (rc > -1) + { + if (option (OPTRESOLVE)) + { +diff -urN mutt-1.6.1/doc/manual.xml.head mutt-1.6.1-trash/doc/manual.xml.head +--- mutt-1.6.1/doc/manual.xml.head 2016-06-12 18:43:00.402447590 +0100 ++++ mutt-1.6.1-trash/doc/manual.xml.head 2016-06-12 18:43:04.901517750 +0100 +@@ -7467,6 +7467,16 @@ + +
+ ++ ++Mutt Patches ++ ++Mutt may also be patched to support smaller features. ++These patches should add a free-form string to the end Mutt's version string. ++Running mutt -v might show: ++patch-1.6.1.sidebar.20160502 ++ ++ ++ + + URL Syntax + +@@ -8081,6 +8091,175 @@ + + + ++ ++ Trash Folder Patch ++ Automatically move "deleted" emails to a trash bin ++ ++ ++ Patch ++ ++ ++ To check if Mutt supports Trash Folder, look for ++ patch-trash in the mutt version. ++ See: . ++ ++ ++ If IMAP is enabled, this patch will use it ++ ++ ++ Dependencies: ++ mutt-1.6.1 ++ IMAP support ++ ++ ++ This patch is part of the NeoMutt Project. ++ ++ ++ ++ Introduction ++ ++ ++ In Mutt, when you delete an email it is first marked ++ deleted. The email isn't really gone until ++ <sync-mailbox> is called. ++ This happens when the user leaves the folder, or the function is called ++ manually. ++ ++ ++ ++ After <sync-mailbox> has been called the email is gone forever. ++ ++ ++ ++ The $trash variable defines a folder in ++ which to keep old emails. As before, first you mark emails for ++ deletion. When <sync-mailbox> is called the emails are moved to ++ the trash folder. ++ ++ ++ ++ The $trash path can be either a full directory, ++ or be relative to the $folder ++ variable, like the mailboxes command. ++ ++ ++ ++ Emails deleted from the trash folder are gone forever. ++ ++ ++ ++ ++ Variables ++ ++ Trash Variables ++ ++ ++ ++ Name ++ Type ++ Default ++ ++ ++ ++ ++ trash ++ string ++ (none) ++ ++ ++ ++
++
++ ++ ++ Functions ++ ++ Trash Functions ++ ++ ++ ++ Menus ++ Default Key ++ Function ++ Description ++ ++ ++ ++ ++ index,pager ++ (none) ++ <purge-message> ++ really delete the current entry, bypassing the trash folder ++ ++ ++ ++
++
++ ++ ++ ++ ++ Muttrc ++ ++# Example Mutt config file for the 'trash' feature. ++ ++# This feature defines a new 'trash' folder. ++# When mail is deleted it will be moved to this folder. ++ ++# Folder in which to put deleted emails ++set trash='+Trash' ++set trash='/home/flatcap/Mail/Trash' ++ ++# The default delete key 'd' will move an email to the 'trash' folder ++# Bind 'D' to REALLY delete an email ++bind index D purge-message ++ ++# Note: Deleting emails from the 'trash' folder will REALLY delete them. ++ ++# vim: syntax=muttrc ++ ++ ++ ++ ++ See Also ++ ++ ++ NeoMutt Project ++ folder-hook ++ ++ ++ ++ ++ Known Bugs ++ None ++ ++ ++ ++ Credits ++ ++ Cedric Duval cedricduval@free.fr ++ Benjamin Kuperman kuperman@acm.org ++ Paul Miller paul@voltar.org ++ Richard Russon rich@flatcap.org ++ ++ ++
++ + + + +diff -urN mutt-1.6.1/doc/muttrc.trash mutt-1.6.1-trash/doc/muttrc.trash +--- mutt-1.6.1/doc/muttrc.trash 1970-01-01 01:00:00.000000000 +0100 ++++ mutt-1.6.1-trash/doc/muttrc.trash 2016-06-12 18:43:04.768515676 +0100 +@@ -0,0 +1,16 @@ ++# Example Mutt config file for the 'trash' feature. ++ ++# This feature defines a new 'trash' folder. ++# When mail is deleted it will be moved to this folder. ++ ++# Folder in which to put deleted emails ++set trash='+Trash' ++set trash='/home/flatcap/Mail/Trash' ++ ++# The default delete key 'd' will move an email to the 'trash' folder ++# Bind 'D' to REALLY delete an email ++bind index D purge-message ++ ++# Note: Deleting emails from the 'trash' folder will REALLY delete them. ++ ++# vim: syntax=muttrc +diff -urN mutt-1.6.1/doc/vimrc.trash mutt-1.6.1-trash/doc/vimrc.trash +--- mutt-1.6.1/doc/vimrc.trash 1970-01-01 01:00:00.000000000 +0100 ++++ mutt-1.6.1-trash/doc/vimrc.trash 2016-06-12 18:43:04.769515692 +0100 +@@ -0,0 +1,7 @@ ++" Vim syntax file for the mutt trash patch ++ ++syntax keyword muttrcVarStr contained skipwhite trash nextgroup=muttrcVarEqualsIdxFmt ++ ++syntax match muttrcFunction contained "\" ++ ++" vim: syntax=vim +diff -urN mutt-1.6.1/flags.c mutt-1.6.1-trash/flags.c +--- mutt-1.6.1/flags.c 2016-06-12 18:43:00.403447606 +0100 ++++ mutt-1.6.1-trash/flags.c 2016-06-12 18:43:04.902517766 +0100 +@@ -65,7 +65,13 @@ + { + h->deleted = 0; + update = 1; +- if (upd_ctx) ctx->deleted--; ++ if (upd_ctx) { ++ ctx->deleted--; ++ if (h->appended) { ++ ctx->appended--; ++ } ++ } ++ h->appended = 0; /* when undeleting, also reset the appended flag */ + #ifdef USE_IMAP + /* see my comment above */ + if (ctx->magic == M_IMAP) +@@ -87,6 +93,27 @@ + } + break; + ++ case M_APPENDED: ++ if (bf) { ++ if (!h->appended) { ++ h->appended = 1; ++ if (upd_ctx) { ++ ctx->appended++; ++ } ++ } ++ } ++ break; ++ ++ case M_PURGED: ++ if (bf) { ++ if (!h->purged) { ++ h->purged = 1; ++ } ++ } else if (h->purged) { ++ h->purged = 0; ++ } ++ break; ++ + case M_NEW: + + if (!mutt_bit_isset(ctx->rights,M_ACL_SEEN)) +diff -urN mutt-1.6.1/functions.h mutt-1.6.1-trash/functions.h +--- mutt-1.6.1/functions.h 2016-06-12 18:43:00.403447606 +0100 ++++ mutt-1.6.1-trash/functions.h 2016-06-12 18:43:04.902517766 +0100 +@@ -121,6 +121,7 @@ + { "toggle-write", OP_TOGGLE_WRITE, "%" }, + { "next-thread", OP_MAIN_NEXT_THREAD, "\016" }, + { "next-subthread", OP_MAIN_NEXT_SUBTHREAD, "\033n" }, ++ { "purge-message", OP_PURGE_MESSAGE, NULL }, + { "query", OP_QUERY, "Q" }, + { "quit", OP_QUIT, "q" }, + { "reply", OP_REPLY, "r" }, +@@ -213,6 +214,7 @@ + { "print-message", OP_PRINT, "p" }, + { "previous-thread", OP_MAIN_PREV_THREAD, "\020" }, + { "previous-subthread",OP_MAIN_PREV_SUBTHREAD, "\033p" }, ++ { "purge-message", OP_PURGE_MESSAGE, NULL }, + { "quit", OP_QUIT, "Q" }, + { "exit", OP_EXIT, "q" }, + { "reply", OP_REPLY, "r" }, +diff -urN mutt-1.6.1/globals.h mutt-1.6.1-trash/globals.h +--- mutt-1.6.1/globals.h 2016-06-12 18:43:00.403447606 +0100 ++++ mutt-1.6.1-trash/globals.h 2016-06-12 18:43:04.903517781 +0100 +@@ -141,6 +141,7 @@ + WHERE char *Status; + WHERE char *Tempdir; + WHERE char *Tochars; ++WHERE char *TrashPath; + WHERE char *TSStatusFormat; + WHERE char *TSIconFormat; + WHERE short TSSupported; +diff -urN mutt-1.6.1/imap/imap.c mutt-1.6.1-trash/imap/imap.c +--- mutt-1.6.1/imap/imap.c 2016-06-12 18:43:00.405447637 +0100 ++++ mutt-1.6.1-trash/imap/imap.c 2016-06-12 18:43:04.905517812 +0100 +@@ -888,6 +888,12 @@ + if (hdrs[n]->deleted != HEADER_DATA(hdrs[n])->deleted) + match = invert ^ hdrs[n]->deleted; + break; ++ case M_EXPIRED: /* imap_fast_trash version of M_DELETED */ ++ if (hdrs[n]->purged) ++ break; ++ if (hdrs[n]->deleted != HEADER_DATA(hdrs[n])->deleted) ++ match = invert ^ (hdrs[n]->deleted && !hdrs[n]->appended); ++ break; + case M_FLAG: + if (hdrs[n]->flagged != HEADER_DATA(hdrs[n])->flagged) + match = invert ^ hdrs[n]->flagged; +@@ -2038,3 +2044,53 @@ + + return -1; + } ++ ++/** ++ * imap_fast_trash - XXX ++ */ ++int ++imap_fast_trash (void) ++{ ++ if ((Context->magic == M_IMAP) && mx_is_imap (TrashPath)) { ++ IMAP_MBOX mx; ++ IMAP_DATA *idata = (IMAP_DATA *) Context->data; ++ char mbox[LONG_STRING]; ++ char mmbox[LONG_STRING]; ++ int rc; ++ dprint (1, (debugfile, "[itf] trashcan seems to be on imap.\n")); ++ ++ if (imap_parse_path (TrashPath, &mx) == 0) { ++ if (mutt_account_match (&(idata->conn->account), &(mx.account))) { ++ dprint (1, (debugfile, "[itf] trashcan seems to be on the same account.\n")); ++ ++ imap_fix_path (idata, mx.mbox, mbox, sizeof (mbox)); ++ if (!*mbox) ++ strfcpy (mbox, "INBOX", sizeof (mbox)); ++ imap_munge_mbox_name (idata, mmbox, sizeof (mmbox), mbox); ++ ++ rc = imap_exec_msgset (idata, "UID COPY", mmbox, M_EXPIRED, 0, 0); ++ if (rc == 0) { ++ dprint (1, (debugfile, "imap_copy_messages: No messages del-tagged\n")); ++ rc = -1; ++ goto old_way; ++ } else if (rc < 0) { ++ dprint (1, (debugfile, "could not queue copy\n")); ++ goto old_way; ++ } else { ++ mutt_message (_("Copying %d messages to %s..."), rc, mbox); ++ return 0; ++ } ++ } else { ++ dprint (1, (debugfile, "[itf] trashcan seems to be on a different account.\n")); ++ } ++old_way: ++ FREE(&mx.mbox); /* we probably only need to free this when the parse works */ ++ } else { ++ dprint (1, (debugfile, "[itf] failed to parse TrashPath.\n")); ++ } ++ ++ dprint (1, (debugfile, "[itf] giving up and trying old fasioned way.\n")); ++ } ++ ++ return 1; ++} +diff -urN mutt-1.6.1/imap/imap.h mutt-1.6.1-trash/imap/imap.h +--- mutt-1.6.1/imap/imap.h 2016-06-12 18:43:00.405447637 +0100 ++++ mutt-1.6.1-trash/imap/imap.h 2016-06-12 18:43:04.774515769 +0100 +@@ -72,4 +72,7 @@ + + int imap_account_match (const ACCOUNT* a1, const ACCOUNT* a2); + ++/* trash */ ++int imap_fast_trash (void); ++ + #endif +diff -urN mutt-1.6.1/imap/message.c mutt-1.6.1-trash/imap/message.c +--- mutt-1.6.1/imap/message.c 2016-06-12 18:43:00.406447652 +0100 ++++ mutt-1.6.1-trash/imap/message.c 2016-06-12 18:43:04.906517828 +0100 +@@ -886,6 +886,7 @@ + if (ctx->hdrs[n]->tagged) + { + mutt_set_flag (ctx, ctx->hdrs[n], M_DELETE, 1); ++ mutt_set_flag (ctx, ctx->hdrs[n], M_APPENDED, 1); + if (option (OPTDELETEUNTAG)) + mutt_set_flag (ctx, ctx->hdrs[n], M_TAG, 0); + } +@@ -893,6 +894,7 @@ + else + { + mutt_set_flag (ctx, h, M_DELETE, 1); ++ mutt_set_flag (ctx, h, M_APPENDED, 1); + if (option (OPTDELETEUNTAG)) + mutt_set_flag (ctx, h, M_TAG, 0); + } +diff -urN mutt-1.6.1/init.h mutt-1.6.1-trash/init.h +--- mutt-1.6.1/init.h 2016-06-12 18:43:00.408447684 +0100 ++++ mutt-1.6.1-trash/init.h 2016-06-12 18:43:04.909517875 +0100 +@@ -3419,6 +3419,16 @@ + ** provided that ``$$ts_enabled'' has been set. This string is identical in + ** formatting to the one used by ``$$status_format''. + */ ++ { "trash", DT_PATH, R_NONE, UL &TrashPath, 0 }, ++ /* ++ ** .pp ++ ** If set, this variable specifies the path of the trash folder where the ++ ** mails marked for deletion will be moved, instead of being irremediably ++ ** purged. ++ ** .pp ++ ** NOTE: When you delete a message in the trash folder, it is really ++ ** deleted, so that you have a way to clean the trash. ++ */ + #ifdef USE_SOCKET + { "tunnel", DT_STR, R_NONE, UL &Tunnel, UL 0 }, + /* +diff -urN mutt-1.6.1/mutt.h mutt-1.6.1-trash/mutt.h +--- mutt-1.6.1/mutt.h 2016-06-12 18:43:00.410447715 +0100 ++++ mutt-1.6.1-trash/mutt.h 2016-06-12 18:43:04.912517922 +0100 +@@ -182,6 +182,8 @@ + M_DELETE, + M_UNDELETE, + M_DELETED, ++ M_APPENDED, ++ M_PURGED, + M_FLAG, + M_TAG, + M_UNTAG, +@@ -719,6 +721,8 @@ + unsigned int mime : 1; /* has a MIME-Version header? */ + unsigned int flagged : 1; /* marked important? */ + unsigned int tagged : 1; ++ unsigned int appended : 1; /* has been saved */ ++ unsigned int purged : 1; /* bypassing the trash folder */ + unsigned int deleted : 1; + unsigned int changed : 1; + unsigned int attach_del : 1; /* has an attachment marked for deletion */ +@@ -891,6 +895,7 @@ + int new; /* how many new messages? */ + int unread; /* how many unread messages? */ + int deleted; /* how many deleted messages */ ++ int appended; /* how many saved messages? */ + int flagged; /* how many flagged messages */ + int msgnotreadyet; /* which msg "new" in pager, -1 if none */ + +diff -urN mutt-1.6.1/muttlib.c mutt-1.6.1-trash/muttlib.c +--- mutt-1.6.1/muttlib.c 2016-06-12 18:43:00.411447731 +0100 ++++ mutt-1.6.1-trash/muttlib.c 2016-06-12 18:43:04.913517937 +0100 +@@ -1511,7 +1511,9 @@ + + if (magic > 0 && !mx_access (s, W_OK)) + { +- if (option (OPTCONFIRMAPPEND)) ++ if (option (OPTCONFIRMAPPEND) && ++ (!TrashPath || (mutt_strcmp (s, TrashPath) != 0))) ++ /* if we're appending to the trash, there's no point in asking */ + { + snprintf (tmp, sizeof (tmp), _("Append messages to %s?"), s); + if ((rc = mutt_yesorno (tmp, M_YES)) == M_NO) +diff -urN mutt-1.6.1/mx.c mutt-1.6.1-trash/mx.c +--- mutt-1.6.1/mx.c 2016-06-12 18:43:00.411447731 +0100 ++++ mutt-1.6.1-trash/mx.c 2016-06-12 18:43:04.914517953 +0100 +@@ -776,6 +776,62 @@ + return rc; + } + ++/** ++ * trash_append - XXX ++ * ++ * move deleted mails to the trash folder ++ */ ++static int trash_append (CONTEXT *ctx) ++{ ++ CONTEXT *ctx_trash; ++ int i = 0; ++ struct stat st, stc; ++ ++ if (!TrashPath || !ctx->deleted || ++ ((ctx->magic == M_MAILDIR) && option (OPTMAILDIRTRASH))) { ++ return 0; ++ } ++ ++ for (; i < ctx->msgcount && (!ctx->hdrs[i]->deleted || ctx->hdrs[i]->appended); i++); ++ /* nothing */ ++ ++ if (i == ctx->msgcount) ++ return 0; /* nothing to be done */ ++ ++ if (mutt_save_confirm (TrashPath, &st) != 0) { ++ mutt_error _("message(s) not deleted"); ++ return -1; ++ } ++ ++ if (lstat (ctx->path, &stc) == 0 && stc.st_ino == st.st_ino ++ && stc.st_dev == st.st_dev && stc.st_rdev == st.st_rdev) { ++ return 0; /* we are in the trash folder: simple sync */ ++ } ++ ++#ifdef USE_IMAP ++ if (!imap_fast_trash()) ++ return 0; ++#endif ++ ++ if ((ctx_trash = mx_open_mailbox (TrashPath, M_APPEND, NULL)) != NULL) { ++ for (i = 0 ; i < ctx->msgcount ; i++) { ++ if (ctx->hdrs[i]->deleted && !ctx->hdrs[i]->appended ++ && !ctx->hdrs[i]->purged ++ && mutt_append_message (ctx_trash, ctx, ctx->hdrs[i], 0, 0) == -1) { ++ mx_close_mailbox (ctx_trash, NULL); ++ return -1; ++ } ++ } ++ ++ mx_close_mailbox (ctx_trash, NULL); ++ } else { ++ mutt_error _("Can't open trash folder"); ++ return -1; ++ } ++ ++ return 0; ++} ++ + /* save changes and close mailbox */ + int mx_close_mailbox (CONTEXT *ctx, int *index_hint) + { +@@ -912,6 +968,7 @@ + if (mutt_append_message (&f, ctx, ctx->hdrs[i], 0, CH_UPDATE_LEN) == 0) + { + mutt_set_flag (ctx, ctx->hdrs[i], M_DELETE, 1); ++ mutt_set_flag (ctx, ctx->hdrs[i], M_APPENDED, 1); + } + else + { +@@ -936,6 +993,14 @@ + return 0; + } + ++ /* copy mails to the trash before expunging */ ++ if (purge && ctx->deleted && mutt_strcmp (ctx->path, TrashPath)) { ++ if (trash_append (ctx) != 0) { ++ ctx->closing = 0; ++ return -1; ++ } ++ } ++ + #ifdef USE_IMAP + /* allow IMAP to preserve the deleted flag across sessions */ + if (ctx->magic == M_IMAP) +@@ -1140,6 +1205,12 @@ + msgcount = ctx->msgcount; + deleted = ctx->deleted; + ++ if (purge && ctx->deleted && mutt_strcmp (ctx->path, TrashPath)) { ++ if (trash_append (ctx) == -1) { ++ return -1; ++ } ++ } ++ + #ifdef USE_IMAP + if (ctx->magic == M_IMAP) + rc = imap_sync_mailbox (ctx, purge, index_hint); +diff -urN mutt-1.6.1/OPS mutt-1.6.1-trash/OPS +--- mutt-1.6.1/OPS 2016-06-12 18:43:00.389447388 +0100 ++++ mutt-1.6.1-trash/OPS 2016-06-12 18:43:04.883517469 +0100 +@@ -142,6 +142,7 @@ + OP_PREV_LINE "scroll up one line" + OP_PREV_PAGE "move to the previous page" + OP_PRINT "print the current entry" ++OP_PURGE_MESSAGE "really delete the current entry, bypassing the trash folder" + OP_QUERY "query external program for addresses" + OP_QUERY_APPEND "append new query results to current results" + OP_QUIT "save changes to mailbox and quit" +diff -urN mutt-1.6.1/pager.c mutt-1.6.1-trash/pager.c +--- mutt-1.6.1/pager.c 2016-06-12 18:43:00.412447746 +0100 ++++ mutt-1.6.1-trash/pager.c 2016-06-12 18:43:04.915517968 +0100 +@@ -2351,6 +2351,7 @@ + MAYBE_REDRAW (redraw); + break; + ++ case OP_PURGE_MESSAGE: + case OP_DELETE: + CHECK_MODE(IsHeader (extra)); + CHECK_READONLY; +@@ -2358,6 +2359,8 @@ + CHECK_ACL(M_ACL_DELETE, _("Cannot delete message")); + + mutt_set_flag (Context, extra->hdr, M_DELETE, 1); ++ mutt_set_flag (Context, extra->hdr, M_PURGED, ++ ch != OP_PURGE_MESSAGE ? 0 : 1); + if (option (OPTDELETEUNTAG)) + mutt_set_flag (Context, extra->hdr, M_TAG, 0); + redraw = REDRAW_STATUS | REDRAW_INDEX; +@@ -2688,6 +2691,7 @@ + CHECK_ACL(M_ACL_DELETE, _("Cannot undelete message")); + + mutt_set_flag (Context, extra->hdr, M_DELETE, 0); ++ mutt_set_flag (Context, extra->hdr, M_PURGED, 0); + redraw = REDRAW_STATUS | REDRAW_INDEX; + if (option (OPTRESOLVE)) + { +@@ -2704,9 +2708,11 @@ + CHECK_ACL(M_ACL_DELETE, _("Cannot undelete message(s)")); + + r = mutt_thread_set_flag (extra->hdr, M_DELETE, 0, ++ ch == OP_UNDELETE_THREAD ? 0 : 1) ++ + mutt_thread_set_flag (extra->hdr, M_PURGED, 0, + ch == OP_UNDELETE_THREAD ? 0 : 1); + +- if (r != -1) ++ if (r > -1) + { + if (option (OPTRESOLVE)) + { +diff -urN mutt-1.6.1/PATCHES mutt-1.6.1-trash/PATCHES +--- mutt-1.6.1/PATCHES 2016-06-12 18:43:00.395447481 +0100 ++++ mutt-1.6.1-trash/PATCHES 2016-06-12 18:43:04.889517563 +0100 +@@ -0,0 +1 @@ ++patch-trash-neo-20160612 +diff -urN mutt-1.6.1/pattern.c mutt-1.6.1-trash/pattern.c +--- mutt-1.6.1/pattern.c 2016-06-12 18:43:00.413447762 +0100 ++++ mutt-1.6.1-trash/pattern.c 2016-06-12 18:43:04.916517984 +0100 +@@ -1367,8 +1367,9 @@ + { + switch (op) + { +- case M_DELETE: + case M_UNDELETE: ++ mutt_set_flag (Context, Context->hdrs[Context->v2r[i]], M_PURGED, 0); ++ case M_DELETE: + mutt_set_flag (Context, Context->hdrs[Context->v2r[i]], M_DELETE, + (op == M_DELETE)); + break; +diff -urN mutt-1.6.1/postpone.c mutt-1.6.1-trash/postpone.c +--- mutt-1.6.1/postpone.c 2016-06-12 18:43:00.414447777 +0100 ++++ mutt-1.6.1-trash/postpone.c 2016-06-12 18:43:04.917518000 +0100 +@@ -277,6 +277,9 @@ + /* finished with this message, so delete it. */ + mutt_set_flag (PostContext, h, M_DELETE, 1); + ++ /* and consider it saved, so that it won't be moved to the trash folder */ ++ mutt_set_flag (PostContext, h, M_APPENDED, 1); ++ + /* update the count for the status display */ + PostCount = PostContext->msgcount - PostContext->deleted; + +diff -urN mutt-1.6.1/README.trash mutt-1.6.1-trash/README.trash +--- mutt-1.6.1/README.trash 1970-01-01 01:00:00.000000000 +0100 ++++ mutt-1.6.1-trash/README.trash 2016-06-12 18:43:04.748515364 +0100 +@@ -0,0 +1,74 @@ ++Trash Folder Patch ++================== ++ ++ Automatically move "deleted" emails to a trash bin ++ ++Patch ++----- ++ ++ To check if Mutt supports "Trash Folder", look for "patch-trash" in the ++ mutt version. ++ ++ If IMAP is enabled, this patch will use it ++ ++ Dependencies ++ * mutt-1.6.1 ++ * IMAP support ++ ++Introduction ++------------ ++ ++ In Mutt, when you "delete" an email it is first marked deleted. The email ++ isn't really gone until is called. This happens when the ++ user leaves the folder, or the function is called manually. ++ ++ After '' has been called the email is gone forever. ++ ++ The $trash variable defines a folder in which to keep old emails. As ++ before, first you mark emails for deletion. When is called ++ the emails are moved to the trash folder. ++ ++ The '$trash' path can be either a full directory, or be relative to the ++ $folder variable, like the 'mailboxes' command. ++ ++ > Note ++ > ++ > Emails deleted from the trash folder are gone forever. ++ ++Variables ++--------- ++ ++ Trash Variables ++ ++ | Name | Type | Default | ++ |-------|--------|---------| ++ | trash | string | (none) | ++ ++Functions ++--------- ++ ++ Trash Functions ++ ++ | Menus | Default Key | Function | Description | ++ |-------------|-------------|-------------------|-------------------------------------------------------------| ++ | index,pager | (none) | '' | really delete the current entry, bypassing the trash folder | ++ ++See Also ++-------- ++ ++ * NeoMutt project ++ * folder-hook ++ ++Known Bugs ++---------- ++ ++ None ++ ++Credits ++------- ++ ++ * Cedric Duval ++ * Benjamin Kuperman ++ * Paul Miller ++ * Richard Russon ++ From c9deac5dde628011ce1d72f5f0849790b7ed8b42 Mon Sep 17 00:00:00 2001 From: koral Date: Sun, 10 Jul 2016 20:31:49 +0200 Subject: [PATCH 006/123] New package: pythonPackages.pysmi --- pkgs/top-level/python-packages.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1ff7e9b8d5e..0ec8052e3f3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18648,6 +18648,29 @@ in modules // { }; }); + pysmi = buildPythonPackage rec { + version = "0.0.7"; + name = "pysmi-${version}"; + + src = pkgs.fetchurl { + url = "mirror://pypi/p/pysmi/${name}.tar.gz"; + sha256 = "05h1lv2a687b9qjc399w6728ildx7majbn338a0c4k3gw6wnv7wr"; + }; + + # Tests require pysnmp, which in turn requires pysmi => infinite recursion + doCheck = false; + + propagatedBuildInputs = with self; [ ply ]; + + meta = { + homepage = http://pysmi.sf.net; + description = "SNMP SMI/MIB Parser"; + license = licenses.bsd2; + platforms = platforms.all; + maintainers = with maintainers; [ koral ]; + }; + }; + pysnmp = buildPythonPackage rec { version = "4.2.5"; name = "pysnmp-${version}"; From 7da3f455cda0b55ecdff72ad94b2946a832ceede Mon Sep 17 00:00:00 2001 From: koral Date: Sun, 10 Jul 2016 20:32:28 +0200 Subject: [PATCH 007/123] pythonPackages.pysnmp: 4.2.5 -> 4.3.2 --- pkgs/top-level/python-packages.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0ec8052e3f3..458590c317a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18672,15 +18672,18 @@ in modules // { }; pysnmp = buildPythonPackage rec { - version = "4.2.5"; + version = "4.3.2"; name = "pysnmp-${version}"; src = pkgs.fetchurl { url = "mirror://pypi/p/pysnmp/${name}.tar.gz"; - sha256 = "0zq7yx8732ad9dxpxqgpqyixj7kfwbvf402q7l5njkv0kbcnavn4"; + sha256 = "0xw925f3p02vdpb3f0ls60qj59w44aiyfs3s0nhdr9vsy4fxhavw"; }; - propagatedBuildInputs = with self; [ pyasn1 pycrypto ]; + # NameError: name 'mibBuilder' is not defined + doCheck = false; + + propagatedBuildInputs = with self; [ pyasn1 pycrypto pysmi ]; meta = { homepage = http://pysnmp.sf.net; From e70d30c5e13f4a613d9807f3d8e8e032c6f566e0 Mon Sep 17 00:00:00 2001 From: koral Date: Sun, 10 Jul 2016 20:33:00 +0200 Subject: [PATCH 008/123] pythonPackages.glances: 2.4.2 -> 2.6.2 --- pkgs/top-level/python-packages.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 458590c317a..513cd729191 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10644,14 +10644,14 @@ in modules // { glances = buildPythonPackage rec { name = "glances-${version}"; - version = "2.4.2"; + version = "2.6.2"; disabled = isPyPy; src = pkgs.fetchFromGitHub { owner = "nicolargo"; repo = "glances"; rev = "v${version}"; - sha256 = "1ghx62z63yyf8wv4bcvfxwxs5mc7b4nrcss6lc1i5s0yjvzvyi6h"; + sha256 = "0gysvx1yai303gb9ks5z3jy1qk7ilnwwy30l7gp3kyfbv2cifbb1"; }; doCheck = false; @@ -10666,6 +10666,8 @@ in modules // { meta = { homepage = "http://nicolargo.github.io/glances/"; description = "Cross-platform curses-based monitoring tool"; + license = licenses.lgpl2; + maintainers = with maintainers; [ koral ]; }; }; From a347b944d986b05d6f0b67541904ef5f0a143661 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Tue, 12 Jul 2016 16:50:56 +0200 Subject: [PATCH 009/123] gnome-tweak-tools: fix missing gi module I changed from python3Packages to python2Packages because I couldn't make it work with python3Packages. This seems similar to: https://github.com/NixOS/nixpkgs/pull/16747#discussion_r69937281 --- .../3.20/misc/gnome-tweak-tool/default.nix | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/default.nix b/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/default.nix index 986d4058af9..e6c4b8c8202 100644 --- a/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/default.nix +++ b/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/default.nix @@ -1,9 +1,11 @@ -{ stdenv, intltool, fetchurl, python, pygobject3, atk +{ stdenv, intltool, fetchurl, atk , pkgconfig, gtk3, glib, libsoup -, bash, makeWrapper, itstool, libxml2, python3Packages -, gnome3, librsvg, gdk_pixbuf, file, libnotify }: +, bash, makeWrapper, itstool, libxml2, python2Packages +, gnome3, librsvg, gdk_pixbuf, file, libnotify, gobjectIntrospection, wrapGAppsHook }: -stdenv.mkDerivation rec { +let + python = python2Packages.python.withPackages ( ps: with ps; [ pygobject3 ] ); +in stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; doCheck = true; @@ -15,17 +17,15 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig gtk3 glib intltool itstool libxml2 gnome3.gsettings_desktop_schemas makeWrapper file gdk_pixbuf gnome3.defaultIconTheme librsvg - python pygobject3 libnotify gnome3.gnome_shell + libnotify gnome3.gnome_shell libsoup gnome3.gnome_settings_daemon gnome3.nautilus - gnome3.gnome_desktop ]; + gnome3.gnome_desktop wrapGAppsHook ]; - preFixup = '' - wrapProgram "$out/bin/gnome-tweak-tool" \ - --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --suffix XDG_DATA_DIRS : "${gtk3}/share:${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" \ - --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ - --prefix PYTHONPATH : "$PYTHONPATH:$(toPythonPath $out)" - ''; + propagatedBuildInputs = [ python gobjectIntrospection ]; + + PYTHONPATH = "$out/${python.python.sitePackages}"; + + wrapPrefixVariables = [ "PYTHONPATH" ]; patches = [ ./find_gsettings.patch From fd0373c589ad1b9fde13b858a1b3e9a70b8c30df Mon Sep 17 00:00:00 2001 From: Jos van den Oever Date: Sun, 10 Jul 2016 11:33:21 +0200 Subject: [PATCH 010/123] kde plasma: 5.6.5 -> 5.7.0 --- maintainers/scripts/generate-kde-plasma.sh | 2 +- .../ark/0001-fix-start-from-plasma.patch | 10 + .../{ark.nix => ark/default.nix} | 3 + .../kde-5/applications-16.04/default.nix | 2 +- pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix | 18 - pkgs/desktops/kde-5/plasma-5.6/srcs.nix | 333 ------------------ .../{plasma-5.6 => plasma-5.7}/bluedevil.nix | 0 .../{plasma-5.6 => plasma-5.7}/breeze-gtk.nix | 0 .../{plasma-5.6 => plasma-5.7}/breeze-qt4.nix | 0 .../{plasma-5.6 => plasma-5.7}/breeze-qt5.nix | 0 .../{plasma-5.6 => plasma-5.7}/default.nix | 2 +- .../kactivitymanagerd.nix | 0 .../kde-cli-tools.nix | 0 .../kde-gtk-config/0001-follow-symlinks.patch | 0 .../kde-gtk-config/default.nix | 0 .../kdecoration.nix | 0 .../kdeplasma-addons.nix | 0 .../{plasma-5.6 => plasma-5.7}/kgamma5.nix | 0 .../{plasma-5.6 => plasma-5.7}/khotkeys.nix | 0 .../kinfocenter.nix | 0 .../{plasma-5.6 => plasma-5.7}/kmenuedit.nix | 0 .../{plasma-5.6 => plasma-5.7}/kscreen.nix | 0 .../kscreenlocker.nix | 0 .../ksshaskpass.nix | 0 .../{plasma-5.6 => plasma-5.7}/ksysguard.nix | 0 .../kwayland-integration.nix} | 8 +- .../0001-qdiriterator-follow-symlinks.patch | 4 +- .../kwin/default.nix | 0 .../{plasma-5.6 => plasma-5.7}/kwrited.nix | 0 .../{plasma-5.6 => plasma-5.7}/libkscreen.nix | 0 .../0001-qdiriterator-follow-symlinks.patch | 0 .../libksysguard/default.nix | 0 .../{plasma-5.6 => plasma-5.7}/milou.nix | 0 .../{plasma-5.6 => plasma-5.7}/oxygen.nix | 0 .../0001-qt-5.5-QML-import-paths.patch | 0 .../plasma-desktop/0002-hwclock.patch | 0 .../plasma-desktop/0003-tzdir.patch | 0 .../plasma-desktop/default.nix | 10 +- .../plasma-integration.nix | 4 +- .../plasma-mediacenter.nix | 0 ...-mobile-broadband-provider-info-path.patch | 0 .../plasma-nm/default.nix | 0 .../{plasma-5.6 => plasma-5.7}/plasma-pa.nix | 0 .../plasma-workspace-wallpapers.nix | 0 .../plasma-workspace/default.nix | 0 .../plasma-workspace/qml-import-path.patch | 13 - .../plasma-workspace/series | 0 .../polkit-kde-agent.nix | 0 pkgs/desktops/kde-5/plasma-5.7/powerdevil.nix | 18 + pkgs/desktops/kde-5/plasma-5.7/srcs.nix | 325 +++++++++++++++++ .../startkde/default.nix | 0 .../startkde/startkde.sh | 0 .../systemsettings.nix | 0 pkgs/top-level/all-packages.nix | 2 +- 54 files changed, 374 insertions(+), 380 deletions(-) create mode 100644 pkgs/desktops/kde-5/applications-16.04/ark/0001-fix-start-from-plasma.patch rename pkgs/desktops/kde-5/applications-16.04/{ark.nix => ark/default.nix} (92%) delete mode 100644 pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.6/srcs.nix rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/bluedevil.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/breeze-gtk.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/breeze-qt4.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/breeze-qt5.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/default.nix (98%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kactivitymanagerd.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kde-cli-tools.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kde-gtk-config/0001-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kde-gtk-config/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kdecoration.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kdeplasma-addons.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kgamma5.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/khotkeys.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kinfocenter.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kmenuedit.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kscreen.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kscreenlocker.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/ksshaskpass.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/ksysguard.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6/kwayland.nix => plasma-5.7/kwayland-integration.nix} (57%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kwin/0001-qdiriterator-follow-symlinks.patch (89%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kwin/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kwrited.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/libkscreen.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/libksysguard/0001-qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/libksysguard/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/milou.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/oxygen.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-desktop/0001-qt-5.5-QML-import-paths.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-desktop/0002-hwclock.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-desktop/0003-tzdir.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-desktop/default.nix (85%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-integration.nix (67%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-mediacenter.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-nm/0001-mobile-broadband-provider-info-path.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-nm/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-pa.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-workspace-wallpapers.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-workspace/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-workspace/qml-import-path.patch (88%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-workspace/series (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/polkit-kde-agent.nix (100%) create mode 100644 pkgs/desktops/kde-5/plasma-5.7/powerdevil.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.7/srcs.nix rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/startkde/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/startkde/startkde.sh (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/systemsettings.nix (100%) diff --git a/maintainers/scripts/generate-kde-plasma.sh b/maintainers/scripts/generate-kde-plasma.sh index fa804758f09..ad916f3a25b 100755 --- a/maintainers/scripts/generate-kde-plasma.sh +++ b/maintainers/scripts/generate-kde-plasma.sh @@ -1,3 +1,3 @@ #!/bin/sh -./fetch-kde-qt.sh http://download.kde.org/stable/plasma/5.6.5/ -A '*.tar.xz' +./fetch-kde-qt.sh http://download.kde.org/stable/plasma/5.7.0/ -A '*.tar.xz' diff --git a/pkgs/desktops/kde-5/applications-16.04/ark/0001-fix-start-from-plasma.patch b/pkgs/desktops/kde-5/applications-16.04/ark/0001-fix-start-from-plasma.patch new file mode 100644 index 00000000000..7590e49c498 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/ark/0001-fix-start-from-plasma.patch @@ -0,0 +1,10 @@ +--- a/app/org.kde.ark.desktop.cmake ++++ b/app/org.kde.ark.desktop.cmake +@@ -154,7 +154,6 @@ + Terminal=false + X-DBUS-StartupType=Multi + X-DBUS-ServiceName=org.kde.ark +-X-KDE-HasTempFileOption=true + Categories=Qt;KDE;Utility;Archiving;Compression;X-KDE-Utilities-File; + InitialPreference=3 + Comment=Work with file archives diff --git a/pkgs/desktops/kde-5/applications-16.04/ark.nix b/pkgs/desktops/kde-5/applications-16.04/ark/default.nix similarity index 92% rename from pkgs/desktops/kde-5/applications-16.04/ark.nix rename to pkgs/desktops/kde-5/applications-16.04/ark/default.nix index 331c8c647ca..4e68488b323 100644 --- a/pkgs/desktops/kde-5/applications-16.04/ark.nix +++ b/pkgs/desktops/kde-5/applications-16.04/ark/default.nix @@ -35,6 +35,9 @@ kdeApp { khtml ki18n kio karchive kconfig kcrash kdbusaddons kiconthemes kservice kpty kwidgetsaddons libarchive ]; + patches = [ + ./0001-fix-start-from-plasma.patch + ]; postInstall = '' wrapQtProgram "$out/bin/ark" \ --prefix PATH : "${PATH}" diff --git a/pkgs/desktops/kde-5/applications-16.04/default.nix b/pkgs/desktops/kde-5/applications-16.04/default.nix index d66285deb8b..0db0c72a6f1 100644 --- a/pkgs/desktops/kde-5/applications-16.04/default.nix +++ b/pkgs/desktops/kde-5/applications-16.04/default.nix @@ -31,7 +31,7 @@ let kdelibs = callPackage ./kdelibs { inherit (pkgs) attica phonon; }; - ark = callPackage ./ark.nix {}; + ark = callPackage ./ark/default.nix {}; baloo-widgets = callPackage ./baloo-widgets.nix {}; dolphin = callPackage ./dolphin.nix {}; dolphin-plugins = callPackage ./dolphin-plugins.nix {}; diff --git a/pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix b/pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix deleted file mode 100644 index 8f3b354b947..00000000000 --- a/pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kactivities -, kauth, kconfig, kdbusaddons, kdelibs4support, kglobalaccel, ki18n -, kidletime, kio, knotifyconfig, kwayland, libkscreen, plasma-workspace -, qtx11extras, solid, udev -}: - -plasmaPackage { - name = "powerdevil"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - propagatedBuildInputs = [ - kconfig kdbusaddons knotifyconfig solid udev kactivities kauth - kdelibs4support kglobalaccel ki18n kio kidletime kwayland libkscreen - plasma-workspace qtx11extras - ]; -} diff --git a/pkgs/desktops/kde-5/plasma-5.6/srcs.nix b/pkgs/desktops/kde-5/plasma-5.6/srcs.nix deleted file mode 100644 index 8307730a550..00000000000 --- a/pkgs/desktops/kde-5/plasma-5.6/srcs.nix +++ /dev/null @@ -1,333 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - bluedevil = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/bluedevil-5.6.5.tar.xz"; - sha256 = "0zf9m02m039g2cpzaij56mnnffcq9bqa40xyq30r9sx5ji1wbnhx"; - name = "bluedevil-5.6.5.tar.xz"; - }; - }; - breeze = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/breeze-5.6.5.tar.xz"; - sha256 = "0wzzixhpij8zb0jq6lsl7h3q22hfzpfz98pddlhnkf27dgmbd7zd"; - name = "breeze-5.6.5.tar.xz"; - }; - }; - breeze-grub = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/breeze-grub-5.6.5.tar.xz"; - sha256 = "1khr8bqid58jq150snpszg3w1rnjh35y5fi20gwwa60hka556978"; - name = "breeze-grub-5.6.5.tar.xz"; - }; - }; - breeze-gtk = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/breeze-gtk-5.6.5.tar.xz"; - sha256 = "0k4510jw89i1spb6gckf190mrspasxnwfwqddaxxrjdan4qklcbv"; - name = "breeze-gtk-5.6.5.tar.xz"; - }; - }; - breeze-plymouth = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/breeze-plymouth-5.6.5.tar.xz"; - sha256 = "05ajv326ylbja9483k0ka6flqpk341knfaxgq056dfqlmiaq2cjp"; - name = "breeze-plymouth-5.6.5.tar.xz"; - }; - }; - discover = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/discover-5.6.5.tar.xz"; - sha256 = "1k5jlq329k5scljdadj8yny5wxhz14c7jxx5wagazb28fq6yf3vj"; - name = "discover-5.6.5.tar.xz"; - }; - }; - kactivitymanagerd = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kactivitymanagerd-5.6.5.tar.xz"; - sha256 = "1l0iyh6palbbw59xv6mhjv4y6c3v2xlqqk95rhhfcbpaq0kv0abh"; - name = "kactivitymanagerd-5.6.5.tar.xz"; - }; - }; - kde-cli-tools = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kde-cli-tools-5.6.5.tar.xz"; - sha256 = "0fmlckjpc202n4ahc69mqjn6iv3xd0z9macvacx5fi2spc1i60kk"; - name = "kde-cli-tools-5.6.5.tar.xz"; - }; - }; - kdecoration = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kdecoration-5.6.5.tar.xz"; - sha256 = "084a2ip5x15f9sdlh7icnbvbsczkc7h71qd4zzr7z9lmqk1b3sp1"; - name = "kdecoration-5.6.5.tar.xz"; - }; - }; - kde-gtk-config = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kde-gtk-config-5.6.5.tar.xz"; - sha256 = "06nk5z1aqiwyd3vhpnmfjjpmsq6r32gx6dgij2la3c2y552d3hlx"; - name = "kde-gtk-config-5.6.5.tar.xz"; - }; - }; - kdeplasma-addons = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kdeplasma-addons-5.6.5.tar.xz"; - sha256 = "19ijpvra2f5dbcjdl0g2lq0rivh6cvmgpryvsyhjyk740ys915kz"; - name = "kdeplasma-addons-5.6.5.tar.xz"; - }; - }; - kgamma5 = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kgamma5-5.6.5.tar.xz"; - sha256 = "0qic1alkdzl6gxacm3i3m8xb5dxpd1hbixd8ixr1cabbviash1nw"; - name = "kgamma5-5.6.5.tar.xz"; - }; - }; - khotkeys = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/khotkeys-5.6.5.tar.xz"; - sha256 = "1zsdpdibv2pnm6vgj28d09cpss8nizmacrnxxlilvizhmiyvrpla"; - name = "khotkeys-5.6.5.tar.xz"; - }; - }; - kinfocenter = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kinfocenter-5.6.5.tar.xz"; - sha256 = "1ci9avkbix6366gvfc3vpwp3r5hwabk1vl29ajl40agrs7kgs9cl"; - name = "kinfocenter-5.6.5.tar.xz"; - }; - }; - kmenuedit = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kmenuedit-5.6.5.tar.xz"; - sha256 = "1fxnmb07shbpnhwk7aw5lspaih79ldkkx69bwgrv99c2h7gbsbhg"; - name = "kmenuedit-5.6.5.tar.xz"; - }; - }; - kscreen = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kscreen-5.6.5.tar.xz"; - sha256 = "16cnf0kmvp67jid3y4w2b2dxzidx8k8zld280svp249wwjyh3wzr"; - name = "kscreen-5.6.5.tar.xz"; - }; - }; - kscreenlocker = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kscreenlocker-5.6.5.tar.xz"; - sha256 = "01hbjvkkhjb63ij3xqyg49s3w8ig68pqrback7r5iv1hsbybxw66"; - name = "kscreenlocker-5.6.5.tar.xz"; - }; - }; - ksshaskpass = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/ksshaskpass-5.6.5.tar.xz"; - sha256 = "1qaja7alyx9czczkg2cpbc24jdvmsp8f9djsavgb650k6mv5h4va"; - name = "ksshaskpass-5.6.5.tar.xz"; - }; - }; - ksysguard = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/ksysguard-5.6.5.tar.xz"; - sha256 = "0ji4q8js5g57vrirbq6nah9gwp6bzcn986pjig1l0q5sm7al95jq"; - name = "ksysguard-5.6.5.tar.xz"; - }; - }; - kwallet-pam = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kwallet-pam-5.6.5.tar.xz"; - sha256 = "0ad2q9kwnaabv6klazg17ilsiy0ckkkcay3q2d51crn1d8kbv3gm"; - name = "kwallet-pam-5.6.5.tar.xz"; - }; - }; - kwayland = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kwayland-5.6.5.tar.xz"; - sha256 = "1niac5g7jdyl0b840njppnw8lbl08a6g4npyxhplvr6mv744h6b9"; - name = "kwayland-5.6.5.tar.xz"; - }; - }; - kwayland-integration = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kwayland-integration-5.6.5.tar.xz"; - sha256 = "1sf6d9062q191q5b4bngk9abnfx3ys8fmkgc04xp8pl5zq5f2m7h"; - name = "kwayland-integration-5.6.5.tar.xz"; - }; - }; - kwin = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kwin-5.6.5.tar.xz"; - sha256 = "113q9m373wmi2dmi2v6im74gd6ava7xrwapkcxq0phyr53w5ihz4"; - name = "kwin-5.6.5.tar.xz"; - }; - }; - kwrited = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kwrited-5.6.5.tar.xz"; - sha256 = "19ra2pbr34ap309vxbssrkkykf2vki0829a6bqhgc482yw582k1r"; - name = "kwrited-5.6.5.tar.xz"; - }; - }; - libkscreen = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/libkscreen-5.6.5.tar.xz"; - sha256 = "1651cj5mkpx7x43na4n9qvvm8r9zadfm3fmpvrv92idf7f3jg4hr"; - name = "libkscreen-5.6.5.tar.xz"; - }; - }; - libksysguard = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/libksysguard-5.6.5.tar.xz"; - sha256 = "048hfxsjddqmw31w2cdzw72xwxrrnx0v6zzxq9514b5j7ak4f9jc"; - name = "libksysguard-5.6.5.tar.xz"; - }; - }; - milou = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/milou-5.6.5.tar.xz"; - sha256 = "066k7dpjs5nrimqxfxk1krc8w771nkqjb9dinqqqrl3njn7rwvxf"; - name = "milou-5.6.5.tar.xz"; - }; - }; - oxygen = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/oxygen-5.6.5.tar.xz"; - sha256 = "12qz947xy6xr8hzm46dy6m5hp8chmzc8ayczyy84xw5239piqa1c"; - name = "oxygen-5.6.5.tar.xz"; - }; - }; - plasma-desktop = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/plasma-desktop-5.6.5.tar.xz"; - sha256 = "1lxvnymiivkrch7z64i5vkck5723jvv5la9hrqdlzjl8qjp2gfk6"; - name = "plasma-desktop-5.6.5.tar.xz"; - }; - }; - plasma-integration = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/plasma-integration-5.6.5.tar.xz"; - sha256 = "1s473jg7xjw4jma7nn770q3cxj01d7bm2kf45fra5lbj6ipp3s20"; - name = "plasma-integration-5.6.5.tar.xz"; - }; - }; - plasma-mediacenter = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/plasma-mediacenter-5.6.5.tar.xz"; - sha256 = "056wzqqhvkc6d53040g0pn22arjz9pcxdgqr8x0bqps5cq7gf846"; - name = "plasma-mediacenter-5.6.5.tar.xz"; - }; - }; - plasma-nm = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/plasma-nm-5.6.5.tar.xz"; - sha256 = "1cmrd06l6mp478ixnwj93brkfz8gaw7081df4r4x6ql4vrga3a80"; - name = "plasma-nm-5.6.5.tar.xz"; - }; - }; - plasma-pa = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/plasma-pa-5.6.5.tar.xz"; - sha256 = "19b43mwjhvvi1wpa68c1g2mk76rqlfg0h8gf51xgd7y3qjv462h0"; - name = "plasma-pa-5.6.5.tar.xz"; - }; - }; - plasma-sdk = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/plasma-sdk-5.6.5.tar.xz"; - sha256 = "0v92b03ff40wkdps88aqkihs1cx4ggwg43x2cm6cdsa3gc84vyn8"; - name = "plasma-sdk-5.6.5.tar.xz"; - }; - }; - plasma-workspace = { - version = "5.6.5.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/plasma-workspace-5.6.5.1.tar.xz"; - sha256 = "158lmnvvqbl3k5485yirw22vqb15qxfd1m0gc83p0hsi2lv7v7j5"; - name = "plasma-workspace-5.6.5.1.tar.xz"; - }; - }; - plasma-workspace-wallpapers = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/plasma-workspace-wallpapers-5.6.5.tar.xz"; - sha256 = "1pkyqsaxqah8h9r8ay449g20135sjw5qsbdp0i0ahprzw07wwijr"; - name = "plasma-workspace-wallpapers-5.6.5.tar.xz"; - }; - }; - polkit-kde-agent = { - version = "1-5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/polkit-kde-agent-1-5.6.5.tar.xz"; - sha256 = "1f7mzxfr463ac0cfpb653x8civ1ciwhkklndxv7mq37m5ssk4dah"; - name = "polkit-kde-agent-1-5.6.5.tar.xz"; - }; - }; - powerdevil = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/powerdevil-5.6.5.tar.xz"; - sha256 = "07x0n311qbisycsrjjd9lkcwxcxlira0qkz1akg5xxll9q2a6qb7"; - name = "powerdevil-5.6.5.tar.xz"; - }; - }; - sddm-kcm = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/sddm-kcm-5.6.5.tar.xz"; - sha256 = "07r20s0373y630x1vjrfgm740sgg8v6qsza4r3my1qbsdj3xwzky"; - name = "sddm-kcm-5.6.5.tar.xz"; - }; - }; - systemsettings = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/systemsettings-5.6.5.tar.xz"; - sha256 = "01z3q8rp8barb7lyfiwcrwn407pxz17z22y46czxc7j56n4ixgim"; - name = "systemsettings-5.6.5.tar.xz"; - }; - }; - user-manager = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/user-manager-5.6.5.tar.xz"; - sha256 = "1fzfcq2kqrwja7y1ij8s7sbwlybharv6wqh62w7xza7pssz9yr7y"; - name = "user-manager-5.6.5.tar.xz"; - }; - }; -} diff --git a/pkgs/desktops/kde-5/plasma-5.6/bluedevil.nix b/pkgs/desktops/kde-5/plasma-5.7/bluedevil.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/bluedevil.nix rename to pkgs/desktops/kde-5/plasma-5.7/bluedevil.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/breeze-gtk.nix b/pkgs/desktops/kde-5/plasma-5.7/breeze-gtk.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/breeze-gtk.nix rename to pkgs/desktops/kde-5/plasma-5.7/breeze-gtk.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/breeze-qt4.nix b/pkgs/desktops/kde-5/plasma-5.7/breeze-qt4.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/breeze-qt4.nix rename to pkgs/desktops/kde-5/plasma-5.7/breeze-qt4.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/breeze-qt5.nix b/pkgs/desktops/kde-5/plasma-5.7/breeze-qt5.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/breeze-qt5.nix rename to pkgs/desktops/kde-5/plasma-5.7/breeze-qt5.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/default.nix b/pkgs/desktops/kde-5/plasma-5.7/default.nix similarity index 98% rename from pkgs/desktops/kde-5/plasma-5.6/default.nix rename to pkgs/desktops/kde-5/plasma-5.7/default.nix index d356dd4bd2f..d0b6ef1f6c9 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.7/default.nix @@ -74,7 +74,7 @@ let kscreenlocker = callPackage ./kscreenlocker.nix {}; ksshaskpass = callPackage ./ksshaskpass.nix {}; ksysguard = callPackage ./ksysguard.nix {}; - kwayland = callPackage ./kwayland.nix {}; + kwayland-integration = callPackage ./kwayland-integration.nix {}; kwin = callPackage ./kwin {}; kwrited = callPackage ./kwrited.nix {}; libkscreen = callPackage ./libkscreen.nix {}; diff --git a/pkgs/desktops/kde-5/plasma-5.6/kactivitymanagerd.nix b/pkgs/desktops/kde-5/plasma-5.7/kactivitymanagerd.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kactivitymanagerd.nix rename to pkgs/desktops/kde-5/plasma-5.7/kactivitymanagerd.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kde-cli-tools.nix b/pkgs/desktops/kde-5/plasma-5.7/kde-cli-tools.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kde-cli-tools.nix rename to pkgs/desktops/kde-5/plasma-5.7/kde-cli-tools.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/0001-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma-5.7/kde-gtk-config/0001-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/0001-follow-symlinks.patch rename to pkgs/desktops/kde-5/plasma-5.7/kde-gtk-config/0001-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/default.nix b/pkgs/desktops/kde-5/plasma-5.7/kde-gtk-config/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/default.nix rename to pkgs/desktops/kde-5/plasma-5.7/kde-gtk-config/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kdecoration.nix b/pkgs/desktops/kde-5/plasma-5.7/kdecoration.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kdecoration.nix rename to pkgs/desktops/kde-5/plasma-5.7/kdecoration.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix b/pkgs/desktops/kde-5/plasma-5.7/kdeplasma-addons.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix rename to pkgs/desktops/kde-5/plasma-5.7/kdeplasma-addons.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kgamma5.nix b/pkgs/desktops/kde-5/plasma-5.7/kgamma5.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kgamma5.nix rename to pkgs/desktops/kde-5/plasma-5.7/kgamma5.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/khotkeys.nix b/pkgs/desktops/kde-5/plasma-5.7/khotkeys.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/khotkeys.nix rename to pkgs/desktops/kde-5/plasma-5.7/khotkeys.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kinfocenter.nix b/pkgs/desktops/kde-5/plasma-5.7/kinfocenter.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kinfocenter.nix rename to pkgs/desktops/kde-5/plasma-5.7/kinfocenter.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kmenuedit.nix b/pkgs/desktops/kde-5/plasma-5.7/kmenuedit.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kmenuedit.nix rename to pkgs/desktops/kde-5/plasma-5.7/kmenuedit.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kscreen.nix b/pkgs/desktops/kde-5/plasma-5.7/kscreen.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kscreen.nix rename to pkgs/desktops/kde-5/plasma-5.7/kscreen.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kscreenlocker.nix b/pkgs/desktops/kde-5/plasma-5.7/kscreenlocker.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kscreenlocker.nix rename to pkgs/desktops/kde-5/plasma-5.7/kscreenlocker.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/ksshaskpass.nix b/pkgs/desktops/kde-5/plasma-5.7/ksshaskpass.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/ksshaskpass.nix rename to pkgs/desktops/kde-5/plasma-5.7/ksshaskpass.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/ksysguard.nix b/pkgs/desktops/kde-5/plasma-5.7/ksysguard.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/ksysguard.nix rename to pkgs/desktops/kde-5/plasma-5.7/ksysguard.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwayland.nix b/pkgs/desktops/kde-5/plasma-5.7/kwayland-integration.nix similarity index 57% rename from pkgs/desktops/kde-5/plasma-5.6/kwayland.nix rename to pkgs/desktops/kde-5/plasma-5.7/kwayland-integration.nix index 3c2788237fc..9045227a51a 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/kwayland.nix +++ b/pkgs/desktops/kde-5/plasma-5.7/kwayland-integration.nix @@ -1,14 +1,16 @@ { plasmaPackage , extra-cmake-modules -, wayland +, kidletime +, kwayland +, kwindowsystem }: plasmaPackage { - name = "kwayland"; + name = "kwayland-integration"; nativeBuildInputs = [ extra-cmake-modules ]; propagatedBuildInputs = [ - wayland + kidletime kwindowsystem kwayland ]; } diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwin/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma-5.7/kwin/0001-qdiriterator-follow-symlinks.patch similarity index 89% rename from pkgs/desktops/kde-5/plasma-5.6/kwin/0001-qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/plasma-5.7/kwin/0001-qdiriterator-follow-symlinks.patch index 797a32fc5f8..7a70fec0d2d 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/kwin/0001-qdiriterator-follow-symlinks.patch +++ b/pkgs/desktops/kde-5/plasma-5.7/kwin/0001-qdiriterator-follow-symlinks.patch @@ -9,8 +9,8 @@ Subject: [PATCH] qdiriterator follow symlinks diff --git a/clients/aurorae/src/aurorae.cpp b/clients/aurorae/src/aurorae.cpp index 781c960..ad5f420 100644 ---- a/clients/aurorae/src/aurorae.cpp -+++ b/clients/aurorae/src/aurorae.cpp +--- a/plugins/kdecorations/aurorae/src/aurorae.cpp ++++ b/plugins/kdecorations/aurorae/src/aurorae.cpp @@ -211,7 +211,7 @@ void Helper::init() // so let's try to locate our plugin: QString pluginPath; diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwin/default.nix b/pkgs/desktops/kde-5/plasma-5.7/kwin/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kwin/default.nix rename to pkgs/desktops/kde-5/plasma-5.7/kwin/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwrited.nix b/pkgs/desktops/kde-5/plasma-5.7/kwrited.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kwrited.nix rename to pkgs/desktops/kde-5/plasma-5.7/kwrited.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/libkscreen.nix b/pkgs/desktops/kde-5/plasma-5.7/libkscreen.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/libkscreen.nix rename to pkgs/desktops/kde-5/plasma-5.7/libkscreen.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/libksysguard/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma-5.7/libksysguard/0001-qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/libksysguard/0001-qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/plasma-5.7/libksysguard/0001-qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix b/pkgs/desktops/kde-5/plasma-5.7/libksysguard/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix rename to pkgs/desktops/kde-5/plasma-5.7/libksysguard/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/milou.nix b/pkgs/desktops/kde-5/plasma-5.7/milou.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/milou.nix rename to pkgs/desktops/kde-5/plasma-5.7/milou.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/oxygen.nix b/pkgs/desktops/kde-5/plasma-5.7/oxygen.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/oxygen.nix rename to pkgs/desktops/kde-5/plasma-5.7/oxygen.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0001-qt-5.5-QML-import-paths.patch b/pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0001-qt-5.5-QML-import-paths.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0001-qt-5.5-QML-import-paths.patch rename to pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0001-qt-5.5-QML-import-paths.patch diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0002-hwclock.patch b/pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0002-hwclock.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0002-hwclock.patch rename to pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0002-hwclock.patch diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0003-tzdir.patch b/pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0003-tzdir.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0003-tzdir.patch rename to pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0003-tzdir.patch diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix b/pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/default.nix similarity index 85% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix rename to pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/default.nix index 2a1d95806c1..3a61651644f 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/default.nix @@ -1,6 +1,6 @@ { plasmaPackage, substituteAll, extra-cmake-modules, kdoctools -, attica, baloo, boost, fontconfig, kactivities, kauth, kcmutils -, kdbusaddons, kdeclarative, kded, kdelibs4support, kemoticons +, attica, baloo, boost, fontconfig, kactivities, kactivities-stats +, kauth, kcmutils, kdbusaddons, kdeclarative, kded, kdelibs4support, kemoticons , kglobalaccel, ki18n, kitemmodels, knewstuff, knotifications , knotifyconfig, kpeople, krunner, kwallet, kwin, phonon , plasma-framework, plasma-workspace, qtdeclarative, qtx11extras @@ -21,9 +21,9 @@ plasmaPackage rec { attica boost fontconfig kcmutils kdbusaddons kded kitemmodels knewstuff knotifications knotifyconfig kwallet libcanberra_kde libXcursor libpulseaudio libXft libxkbfile phonon qtsvg xf86inputevdev - xf86inputsynaptics xkeyboard_config xinput baloo kactivities kauth - kdeclarative kdelibs4support kemoticons kglobalaccel ki18n kpeople krunner - kwin plasma-framework plasma-workspace qtdeclarative + xf86inputsynaptics xkeyboard_config xinput baloo kactivities + kactivities-stats kauth kdeclarative kdelibs4support kemoticons kglobalaccel + ki18n kpeople krunner kwin plasma-framework plasma-workspace qtdeclarative qtquickcontrols qtx11extras ksysguard ]; patches = [ diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-integration.nix b/pkgs/desktops/kde-5/plasma-5.7/plasma-integration.nix similarity index 67% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-integration.nix rename to pkgs/desktops/kde-5/plasma-5.7/plasma-integration.nix index 7bc41986a4f..97d30dcd773 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-integration.nix +++ b/pkgs/desktops/kde-5/plasma-5.7/plasma-integration.nix @@ -1,5 +1,5 @@ { plasmaPackage, extra-cmake-modules -, kconfig, kconfigwidgets, kiconthemes, kio, kwayland +, breeze-qt5, kconfig, kconfigwidgets, kiconthemes, kio, kwayland , libXcursor }: @@ -11,7 +11,7 @@ plasmaPackage { extra-cmake-modules ]; buildInputs = [ - kconfig kconfigwidgets kiconthemes kio kwayland + breeze-qt5 kconfig kconfigwidgets kiconthemes kio kwayland libXcursor ]; } diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-mediacenter.nix b/pkgs/desktops/kde-5/plasma-5.7/plasma-mediacenter.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-mediacenter.nix rename to pkgs/desktops/kde-5/plasma-5.7/plasma-mediacenter.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-nm/0001-mobile-broadband-provider-info-path.patch b/pkgs/desktops/kde-5/plasma-5.7/plasma-nm/0001-mobile-broadband-provider-info-path.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-nm/0001-mobile-broadband-provider-info-path.patch rename to pkgs/desktops/kde-5/plasma-5.7/plasma-nm/0001-mobile-broadband-provider-info-path.patch diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-nm/default.nix b/pkgs/desktops/kde-5/plasma-5.7/plasma-nm/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-nm/default.nix rename to pkgs/desktops/kde-5/plasma-5.7/plasma-nm/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-pa.nix b/pkgs/desktops/kde-5/plasma-5.7/plasma-pa.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-pa.nix rename to pkgs/desktops/kde-5/plasma-5.7/plasma-pa.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace-wallpapers.nix b/pkgs/desktops/kde-5/plasma-5.7/plasma-workspace-wallpapers.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-workspace-wallpapers.nix rename to pkgs/desktops/kde-5/plasma-5.7/plasma-workspace-wallpapers.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix b/pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix rename to pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch b/pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/qml-import-path.patch similarity index 88% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch rename to pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/qml-import-path.patch index 7842109669a..12eb65caa71 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch +++ b/pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/qml-import-path.patch @@ -89,16 +89,3 @@ Index: plasma-workspace-5.6.3/applets/notifications/package/contents/ui/main.qml MouseEventListener { id: notificationsApplet -Index: plasma-workspace-5.6.3/applets/systemtray/package/contents/ui/main.qml -=================================================================== ---- plasma-workspace-5.6.3.orig/applets/systemtray/package/contents/ui/main.qml -+++ plasma-workspace-5.6.3/applets/systemtray/package/contents/ui/main.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.core 2.0 as Plasma - // import org.kde.plasma.extras 2.0 as PlasmaExtras - - import org.kde.private.systemtray 2.0 as SystemTray --import "Layout.js" as LayoutManager -+import "../code/Layout.js" as LayoutManager - - Item { - id: root diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/series b/pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/series similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/series rename to pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/series diff --git a/pkgs/desktops/kde-5/plasma-5.6/polkit-kde-agent.nix b/pkgs/desktops/kde-5/plasma-5.7/polkit-kde-agent.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/polkit-kde-agent.nix rename to pkgs/desktops/kde-5/plasma-5.7/polkit-kde-agent.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/powerdevil.nix b/pkgs/desktops/kde-5/plasma-5.7/powerdevil.nix new file mode 100644 index 00000000000..cbb2b9b019f --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.7/powerdevil.nix @@ -0,0 +1,18 @@ +{ plasmaPackage, extra-cmake-modules, kdoctools, bluez-qt, kactivities +, kauth, kconfig, kdbusaddons, kdelibs4support, kglobalaccel, ki18n +, kidletime, kio, knotifyconfig, kwayland, libkscreen, networkmanager-qt +, plasma-workspace, qtx11extras, solid, udev +}: + +plasmaPackage { + name = "powerdevil"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + ]; + propagatedBuildInputs = [ + kconfig kdbusaddons knotifyconfig solid udev bluez-qt kactivities kauth + kdelibs4support kglobalaccel ki18n kio kidletime kwayland libkscreen + networkmanager-qt plasma-workspace qtx11extras + ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.7/srcs.nix b/pkgs/desktops/kde-5/plasma-5.7/srcs.nix new file mode 100644 index 00000000000..2f017f0d52b --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.7/srcs.nix @@ -0,0 +1,325 @@ +# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh +{ fetchurl, mirror }: + +{ + bluedevil = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/bluedevil-5.7.0.tar.xz"; + sha256 = "10f507hj31asg08kz5c5j5g2qlzmn57x68jrbgx80hdrji6jv6qn"; + name = "bluedevil-5.7.0.tar.xz"; + }; + }; + breeze = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/breeze-5.7.0.tar.xz"; + sha256 = "1sy400m8lkdqna926fxfq3nmcfsrd877b841an686qf9lb7iga2l"; + name = "breeze-5.7.0.tar.xz"; + }; + }; + breeze-grub = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/breeze-grub-5.7.0.tar.xz"; + sha256 = "0lgf13kbv1mcl57hwm0al87xslwvc7cgnj4k8f3026fjf78dqzr8"; + name = "breeze-grub-5.7.0.tar.xz"; + }; + }; + breeze-gtk = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/breeze-gtk-5.7.0.tar.xz"; + sha256 = "1h9hvhln5mwsi4fn7a7csf7gn6qlvx4d6bmxij2qsjm4i14izxhb"; + name = "breeze-gtk-5.7.0.tar.xz"; + }; + }; + breeze-plymouth = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/breeze-plymouth-5.7.0.tar.xz"; + sha256 = "1kq3ys1dvw2asgda6p9qbb2kkgskpvhjyp0xj4mgi5yaklz0bxgv"; + name = "breeze-plymouth-5.7.0.tar.xz"; + }; + }; + discover = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/discover-5.7.0.tar.xz"; + sha256 = "0j3339g6lrf44hg3xbvzh01pygcawrrf1c9vhijimrrd197qcqwg"; + name = "discover-5.7.0.tar.xz"; + }; + }; + kactivitymanagerd = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kactivitymanagerd-5.7.0.tar.xz"; + sha256 = "0j2rf4qlha7cdwgdnvxrhlc90j2m8qacyhii27zdjz9iwv48zyjq"; + name = "kactivitymanagerd-5.7.0.tar.xz"; + }; + }; + kde-cli-tools = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kde-cli-tools-5.7.0.tar.xz"; + sha256 = "05g4q6lf7mkm8ys39qhwqavy2g2xc17ahsfc037wkcpka47m6i3m"; + name = "kde-cli-tools-5.7.0.tar.xz"; + }; + }; + kdecoration = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kdecoration-5.7.0.tar.xz"; + sha256 = "1i43b572yd3s0bgfvj97r18p0yk01skwmwqqzripb80pygw9yzvc"; + name = "kdecoration-5.7.0.tar.xz"; + }; + }; + kde-gtk-config = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kde-gtk-config-5.7.0.tar.xz"; + sha256 = "01y4m3lyrfb0hngbmk6r3xpbak9r534vf1fqgf22956sdfrl5g2p"; + name = "kde-gtk-config-5.7.0.tar.xz"; + }; + }; + kdeplasma-addons = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kdeplasma-addons-5.7.0.tar.xz"; + sha256 = "0kv0c2yxikbpdkr82n16pw016gsvbpmhp8kgbzdjdaqinicw4p2b"; + name = "kdeplasma-addons-5.7.0.tar.xz"; + }; + }; + kgamma5 = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kgamma5-5.7.0.tar.xz"; + sha256 = "1scqi61agl8f1pmq29v32fs126x0ddw933q6yjswy1w2a0nn0i02"; + name = "kgamma5-5.7.0.tar.xz"; + }; + }; + khotkeys = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/khotkeys-5.7.0.tar.xz"; + sha256 = "0l27frmam6amgay42vb4pl98l81pb6xasnwd9ww3069sr9kiq0vi"; + name = "khotkeys-5.7.0.tar.xz"; + }; + }; + kinfocenter = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kinfocenter-5.7.0.tar.xz"; + sha256 = "1bs3yl916s4dpci481dk81193mmh7kd9vqq535q74w0hx8khcwlf"; + name = "kinfocenter-5.7.0.tar.xz"; + }; + }; + kmenuedit = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kmenuedit-5.7.0.tar.xz"; + sha256 = "0l7vibvy50v5hqpv6zb2j7c2nf0jbd88vwxhbv6rg150f3qy9awb"; + name = "kmenuedit-5.7.0.tar.xz"; + }; + }; + kscreen = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kscreen-5.7.0.tar.xz"; + sha256 = "1qiwz220lff8l48ysfasx0zysv9m1mm2dsk60j84rcr3v5jwim6h"; + name = "kscreen-5.7.0.tar.xz"; + }; + }; + kscreenlocker = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kscreenlocker-5.7.0.tar.xz"; + sha256 = "0yg4k1v31fkqh23myd4lfc59b04qydgiym2hahdz66vnvkkdcvdv"; + name = "kscreenlocker-5.7.0.tar.xz"; + }; + }; + ksshaskpass = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/ksshaskpass-5.7.0.tar.xz"; + sha256 = "0jv0i1gz36vv690x69isw6v856vjrbkjisy2gwd7z0l3986z54l0"; + name = "ksshaskpass-5.7.0.tar.xz"; + }; + }; + ksysguard = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/ksysguard-5.7.0.tar.xz"; + sha256 = "093ksjk6gy5j2hgfwlw6vspd22gqnb28aby9x8nvrx9idaxldlrj"; + name = "ksysguard-5.7.0.tar.xz"; + }; + }; + kwallet-pam = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kwallet-pam-5.7.0.tar.xz"; + sha256 = "0d1aba9mjb52cy8abm8ais5ypcfs3xny62dzjb7fd5ac1mdld0bz"; + name = "kwallet-pam-5.7.0.tar.xz"; + }; + }; + kwayland-integration = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kwayland-integration-5.7.0.tar.xz"; + sha256 = "1p2l98dd7dl1knshivk27qc2cfpvar26vci4lpxxwhg6psqdsnam"; + name = "kwayland-integration-5.7.0.tar.xz"; + }; + }; + kwin = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kwin-5.7.0.tar.xz"; + sha256 = "1mpdcr4dva447jigdfxvrhpd2mh67s83w3mzw28f9xb1r7zcfzpm"; + name = "kwin-5.7.0.tar.xz"; + }; + }; + kwrited = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kwrited-5.7.0.tar.xz"; + sha256 = "1wz56v9f3an65x17wj8bdg4f27a0j1mrsaz1v9gqks86cbmkkr5k"; + name = "kwrited-5.7.0.tar.xz"; + }; + }; + libkscreen = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/libkscreen-5.7.0.tar.xz"; + sha256 = "0g5xs8sajzkmn91n0y92mi71zjadpn35k2sxw8b12ilp9r5qzkqc"; + name = "libkscreen-5.7.0.tar.xz"; + }; + }; + libksysguard = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/libksysguard-5.7.0.tar.xz"; + sha256 = "1i3sl8wnfg1sl5psbfikw57w1d4bac6d61slkga60mp5z0jw4vss"; + name = "libksysguard-5.7.0.tar.xz"; + }; + }; + milou = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/milou-5.7.0.tar.xz"; + sha256 = "1i778zang4rk3kvd1z7aszrcsxa3l1k2d5xiv2zqf2z6hnranvbd"; + name = "milou-5.7.0.tar.xz"; + }; + }; + oxygen = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/oxygen-5.7.0.tar.xz"; + sha256 = "05vz4zixg9nfrydd2i7jjkv082vgmhxlv3v109vgkr652dh9kncf"; + name = "oxygen-5.7.0.tar.xz"; + }; + }; + plasma-desktop = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/plasma-desktop-5.7.0.tar.xz"; + sha256 = "0f8pi90g1msrfzd769d7c26lxbq07hf7va5d9mclq3kfhk2wm951"; + name = "plasma-desktop-5.7.0.tar.xz"; + }; + }; + plasma-integration = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/plasma-integration-5.7.0.tar.xz"; + sha256 = "0rhm0p6350jibqflh3f5b7df3rnm9k5p02sgna6p6gm5b2w145ii"; + name = "plasma-integration-5.7.0.tar.xz"; + }; + }; + plasma-mediacenter = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/plasma-mediacenter-5.7.0.tar.xz"; + sha256 = "1xva1lyyafik6kq7f1s9fddvb7n35paz0lmcyzqbaxs149xz6r96"; + name = "plasma-mediacenter-5.7.0.tar.xz"; + }; + }; + plasma-nm = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/plasma-nm-5.7.0.tar.xz"; + sha256 = "1aa8wv4jdmjjwmvn0pd80p0byyys498xi3i4fqy84r8spmb6xb9i"; + name = "plasma-nm-5.7.0.tar.xz"; + }; + }; + plasma-pa = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/plasma-pa-5.7.0.tar.xz"; + sha256 = "15hziwyyvz9mqcyqnjwc49a31v2d2ysa7gaydkb8dizgqfd4pcs8"; + name = "plasma-pa-5.7.0.tar.xz"; + }; + }; + plasma-sdk = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/plasma-sdk-5.7.0.tar.xz"; + sha256 = "0cbjbp9m0l3lik1j0x1czn4whd2h140954dlgqb87k4d55lxpxjh"; + name = "plasma-sdk-5.7.0.tar.xz"; + }; + }; + plasma-workspace = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/plasma-workspace-5.7.0.tar.xz"; + sha256 = "047pqpwi2zgyyp592wbxqxai5j5hvxbnw01s79q4i4wpsq10b2fa"; + name = "plasma-workspace-5.7.0.tar.xz"; + }; + }; + plasma-workspace-wallpapers = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/plasma-workspace-wallpapers-5.7.0.tar.xz"; + sha256 = "1f2nmnprj8pb6wl3svfmsgivl2565mabpmqyaywwfblhi5ycxj52"; + name = "plasma-workspace-wallpapers-5.7.0.tar.xz"; + }; + }; + polkit-kde-agent = { + version = "1-5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/polkit-kde-agent-1-5.7.0.tar.xz"; + sha256 = "0cxjgmhrb26ghqlrdj4kksw5g7b90pfhfsz4jia85szk2nssivl3"; + name = "polkit-kde-agent-1-5.7.0.tar.xz"; + }; + }; + powerdevil = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/powerdevil-5.7.0.tar.xz"; + sha256 = "1wc59vzzjbjr5brwnmlcnibh5hii61001hbc7hma3gngzr7j0b6m"; + name = "powerdevil-5.7.0.tar.xz"; + }; + }; + sddm-kcm = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/sddm-kcm-5.7.0.tar.xz"; + sha256 = "14jnyv7fs2bscmb0iw3pdxzmk4qyv0czzlpszi1qd1i7k0f2dngy"; + name = "sddm-kcm-5.7.0.tar.xz"; + }; + }; + systemsettings = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/systemsettings-5.7.0.tar.xz"; + sha256 = "13k325r7vy6l4a6lwrbhgm60bdmn91yjkld7zsd2xyxbw27vis3p"; + name = "systemsettings-5.7.0.tar.xz"; + }; + }; + user-manager = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/user-manager-5.7.0.tar.xz"; + sha256 = "16h7ifwa8dpn0yrg8cisi570dm2wigmb50pgxh9h8smfzgc0vg7k"; + name = "user-manager-5.7.0.tar.xz"; + }; + }; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/startkde/default.nix b/pkgs/desktops/kde-5/plasma-5.7/startkde/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/startkde/default.nix rename to pkgs/desktops/kde-5/plasma-5.7/startkde/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/startkde/startkde.sh b/pkgs/desktops/kde-5/plasma-5.7/startkde/startkde.sh similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/startkde/startkde.sh rename to pkgs/desktops/kde-5/plasma-5.7/startkde/startkde.sh diff --git a/pkgs/desktops/kde-5/plasma-5.6/systemsettings.nix b/pkgs/desktops/kde-5/plasma-5.7/systemsettings.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/systemsettings.nix rename to pkgs/desktops/kde-5/plasma-5.7/systemsettings.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b7c8549faf8..ae9d92c908e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16143,7 +16143,7 @@ in kde5 = let frameworks = import ../desktops/kde-5/frameworks-5.22 { inherit pkgs; }; - plasma = import ../desktops/kde-5/plasma-5.6 { inherit pkgs; }; + plasma = import ../desktops/kde-5/plasma-5.7 { inherit pkgs; }; applications = import ../desktops/kde-5/applications-16.04 { inherit pkgs; }; merged = self: { plasma = plasma self; From b42ff8182a6ca9c3a7d8b38f8ddc8fde3039f4d5 Mon Sep 17 00:00:00 2001 From: Jos van den Oever Date: Sun, 10 Jul 2016 11:36:14 +0200 Subject: [PATCH 011/123] kde frameworks: 5.22 -> 5.24 --- .../scripts/generate-kde-frameworks.sh | 2 +- pkgs/desktops/kde-5/frameworks-5.22/srcs.nix | 581 ------------------ .../attica.nix | 0 .../baloo.nix | 0 .../bluez-qt.nix | 0 .../breeze-icons.nix | 0 .../default.nix | 1 + .../extra-cmake-modules/default.nix | 0 .../extra-cmake-modules/nix-lib-path.patch | 0 .../extra-cmake-modules/series | 0 .../extra-cmake-modules/setup-hook.sh | 0 .../frameworkintegration.nix | 0 .../kactivities-stats.nix | 0 .../kactivities.nix | 0 .../kapidox.nix | 0 .../karchive.nix | 0 .../kauth/cmake-install-paths.patch | 0 .../kauth/default.nix | 0 .../kauth/series | 0 .../kbookmarks.nix | 0 .../0001-qdiriterator-follow-symlinks.patch | 0 .../kcmutils/default.nix | 0 .../kcodecs.nix | 0 .../kcompletion.nix | 0 .../kconfig.nix | 0 .../0001-qdiriterator-follow-symlinks.patch | 0 .../kconfigwidgets/default.nix | 0 .../kcoreaddons.nix | 0 .../kcrash.nix | 0 .../kdbusaddons.nix | 0 .../kdeclarative.nix | 0 .../kded.nix | 0 .../kdelibs4support/default.nix | 0 .../kdelibs4support/nix-kde-include-dir.patch | 0 .../kdelibs4support/series | 0 .../kdelibs4support/setup-hook.sh | 0 .../kdesignerplugin.nix | 0 .../kdesu.nix | 0 .../kdnssd.nix | 0 .../kdoctools/default.nix | 0 .../kdoctools-no-find-docbook-xml.patch | 0 .../kdoctools/setup-hook.sh | 0 .../kemoticons.nix | 0 .../kfilemetadata/cmake-install-paths.patch | 0 .../kfilemetadata/default.nix | 0 .../kfilemetadata/series | 0 .../kglobalaccel.nix | 0 .../kguiaddons.nix | 0 .../khtml.nix | 0 .../ki18n.nix | 0 .../kiconthemes/default-theme-breeze.patch | 2 +- .../kiconthemes/default.nix | 4 +- .../kiconthemes/series | 0 .../kidletime.nix | 0 .../kimageformats.nix | 0 .../kinit/default.nix | 0 .../kinit/kinit-libpath.patch | 0 .../kinit/series | 0 .../kio/default.nix | 0 .../kio/samba-search-path.patch | 0 .../kio/series | 0 .../kitemmodels.nix | 0 .../kitemviews.nix | 0 .../kjobwidgets.nix | 0 .../kjs.nix | 0 .../kjsembed.nix | 0 .../kmediaplayer.nix | 0 .../knewstuff.nix | 0 .../knotifications.nix | 0 .../knotifyconfig.nix | 0 .../kpackage/allow-external-paths.patch | 0 .../kpackage/default.nix | 0 .../qdiriterator-follow-symlinks.patch | 0 .../kpackage/series | 0 .../kparts.nix | 0 .../kpeople.nix | 0 .../kplotting.nix | 0 .../kpty.nix | 0 .../kross.nix | 0 .../krunner.nix | 0 .../kservice/default.nix | 0 .../kservice/no-canonicalize-path.patch | 0 .../qdiriterator-follow-symlinks.patch | 0 .../kservice/series | 0 .../kservice/setup-hook.sh | 0 .../ktexteditor/default.nix | 0 .../ktexteditor/no-qcoreapplication.patch | 0 .../ktexteditor/series | 0 .../ktextwidgets.nix | 0 .../kunitconversion.nix | 0 .../kwallet.nix | 0 .../kde-5/frameworks-5.24/kwayland.nix | 14 + .../kwidgetsaddons.nix | 0 .../kwindowsystem.nix | 0 .../kxmlgui.nix | 0 .../kxmlrpcclient.nix | 0 .../modemmanager-qt.nix | 0 .../networkmanager-qt.nix | 0 .../oxygen-icons5.nix | 0 .../plasma-framework.nix | 0 .../solid.nix | 0 .../sonnet.nix | 0 pkgs/desktops/kde-5/frameworks-5.24/srcs.nix | 581 ++++++++++++++++++ .../threadweaver.nix | 0 pkgs/top-level/all-packages.nix | 2 +- 105 files changed, 601 insertions(+), 586 deletions(-) delete mode 100644 pkgs/desktops/kde-5/frameworks-5.22/srcs.nix rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/attica.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/baloo.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/bluez-qt.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/breeze-icons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/default.nix (99%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/extra-cmake-modules/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/extra-cmake-modules/nix-lib-path.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/extra-cmake-modules/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/extra-cmake-modules/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/frameworkintegration.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kactivities-stats.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kactivities.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kapidox.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/karchive.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kauth/cmake-install-paths.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kauth/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kauth/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kbookmarks.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kcmutils/0001-qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kcmutils/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kcodecs.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kcompletion.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kconfig.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kconfigwidgets/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kcoreaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kcrash.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdbusaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdeclarative.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kded.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdelibs4support/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdelibs4support/nix-kde-include-dir.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdelibs4support/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdelibs4support/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdesignerplugin.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdesu.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdnssd.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdoctools/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdoctools/kdoctools-no-find-docbook-xml.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdoctools/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kemoticons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kfilemetadata/cmake-install-paths.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kfilemetadata/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kfilemetadata/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kglobalaccel.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kguiaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/khtml.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/ki18n.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kiconthemes/default-theme-breeze.patch (91%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kiconthemes/default.nix (70%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kiconthemes/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kidletime.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kimageformats.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kinit/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kinit/kinit-libpath.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kinit/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kio/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kio/samba-search-path.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kio/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kitemmodels.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kitemviews.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kjobwidgets.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kjs.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kjsembed.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kmediaplayer.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/knewstuff.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/knotifications.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/knotifyconfig.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kpackage/allow-external-paths.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kpackage/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kpackage/qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kpackage/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kparts.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kpeople.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kplotting.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kpty.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kross.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/krunner.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kservice/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kservice/no-canonicalize-path.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kservice/qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kservice/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kservice/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/ktexteditor/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/ktexteditor/no-qcoreapplication.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/ktexteditor/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/ktextwidgets.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kunitconversion.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kwallet.nix (100%) create mode 100644 pkgs/desktops/kde-5/frameworks-5.24/kwayland.nix rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kwidgetsaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kwindowsystem.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kxmlgui.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kxmlrpcclient.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/modemmanager-qt.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/networkmanager-qt.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/oxygen-icons5.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/plasma-framework.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/solid.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/sonnet.nix (100%) create mode 100644 pkgs/desktops/kde-5/frameworks-5.24/srcs.nix rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/threadweaver.nix (100%) diff --git a/maintainers/scripts/generate-kde-frameworks.sh b/maintainers/scripts/generate-kde-frameworks.sh index aa693ced704..e690662b3f2 100755 --- a/maintainers/scripts/generate-kde-frameworks.sh +++ b/maintainers/scripts/generate-kde-frameworks.sh @@ -1,3 +1,3 @@ #!/bin/sh -./fetch-kde-qt.sh http://download.kde.org/stable/frameworks/5.22/ -A '*.tar.xz' +./fetch-kde-qt.sh http://download.kde.org/stable/frameworks/5.24/ -A '*.tar.xz' diff --git a/pkgs/desktops/kde-5/frameworks-5.22/srcs.nix b/pkgs/desktops/kde-5/frameworks-5.22/srcs.nix deleted file mode 100644 index 156a11ba216..00000000000 --- a/pkgs/desktops/kde-5/frameworks-5.22/srcs.nix +++ /dev/null @@ -1,581 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - attica = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/attica-5.22.0.tar.xz"; - sha256 = "1i26nwxyrb62icw49znlyz9y670cv7xvibzbdfnnxq9czsalwym7"; - name = "attica-5.22.0.tar.xz"; - }; - }; - baloo = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/baloo-5.22.0.tar.xz"; - sha256 = "0h51j41pa8b18jkdna0247z5alqfbvgfzlxc6s6p0c7g7658z0w3"; - name = "baloo-5.22.0.tar.xz"; - }; - }; - bluez-qt = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/bluez-qt-5.22.0.tar.xz"; - sha256 = "1lrkkg2f2qjj8cy968l3scdrvi506m5hr9x22d1zn6r12fvq6304"; - name = "bluez-qt-5.22.0.tar.xz"; - }; - }; - breeze-icons = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/breeze-icons-5.22.0.tar.xz"; - sha256 = "162698h01cs7116la4jfygn8ka4ffjmnv7nxjl6yhcqrs25nky7l"; - name = "breeze-icons-5.22.0.tar.xz"; - }; - }; - extra-cmake-modules = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/extra-cmake-modules-5.22.0.tar.xz"; - sha256 = "042ad7kp2ijp66gvz0q60glk95wj9f0fymrjyw68253rqynf3zj3"; - name = "extra-cmake-modules-5.22.0.tar.xz"; - }; - }; - frameworkintegration = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/frameworkintegration-5.22.0.tar.xz"; - sha256 = "0jf9y738r86ss520hqhfll8prrfpha73myj99hbz3sqrix7b0va9"; - name = "frameworkintegration-5.22.0.tar.xz"; - }; - }; - kactivities = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kactivities-5.22.0.tar.xz"; - sha256 = "068jhc6lw47hcibvys968m4wa1b278ccy2gas9iymzzys1ccv6kr"; - name = "kactivities-5.22.0.tar.xz"; - }; - }; - kactivities-stats = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kactivities-stats-5.22.0.tar.xz"; - sha256 = "1gx5wm337nwbwqb56xvl16vhk47v7a5qpx5hhn7ygpfxkgxh6wiq"; - name = "kactivities-stats-5.22.0.tar.xz"; - }; - }; - kapidox = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kapidox-5.22.0.tar.xz"; - sha256 = "0cs133g1rvbcrdvy7zvk5c14p5iwwn0x0m76c2ifal0g8qh0hmd1"; - name = "kapidox-5.22.0.tar.xz"; - }; - }; - karchive = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/karchive-5.22.0.tar.xz"; - sha256 = "1ywd38j6jpwj21kdp504gs0pfvlnvg6ak8hjk6a269pkci3dyf91"; - name = "karchive-5.22.0.tar.xz"; - }; - }; - kauth = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kauth-5.22.0.tar.xz"; - sha256 = "1c0kp25g57nldh1x5vfq9fypbznc991jrry2lydvb06d3jh44vbn"; - name = "kauth-5.22.0.tar.xz"; - }; - }; - kbookmarks = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kbookmarks-5.22.0.tar.xz"; - sha256 = "093rlg8pprjg7ba52dh2z9j2x5ir7s9kjas6ni4fqxxzpp15hh3p"; - name = "kbookmarks-5.22.0.tar.xz"; - }; - }; - kcmutils = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kcmutils-5.22.0.tar.xz"; - sha256 = "1s7gw9l2n92rrcdzy9pnwq8na65axd8bkk9nphyhpbxk76zj1gyy"; - name = "kcmutils-5.22.0.tar.xz"; - }; - }; - kcodecs = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kcodecs-5.22.0.tar.xz"; - sha256 = "0rlqs8m2ib2kkj679gn74zqqxzsddfcbywpgwlcd6b992i4cad87"; - name = "kcodecs-5.22.0.tar.xz"; - }; - }; - kcompletion = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kcompletion-5.22.0.tar.xz"; - sha256 = "07jqjrddigdqsdy2adzari7g626sakilg9d765s75vncv5amrvzy"; - name = "kcompletion-5.22.0.tar.xz"; - }; - }; - kconfig = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kconfig-5.22.0.tar.xz"; - sha256 = "0n0dzgba96pkabbvk1cfm34j9jirgbd84xha6adscpxs28506cg0"; - name = "kconfig-5.22.0.tar.xz"; - }; - }; - kconfigwidgets = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kconfigwidgets-5.22.0.tar.xz"; - sha256 = "0jr6ygd8c0gap2ay2685wj3fx4scrahzbpaaj4bjhq2s79nvmlyg"; - name = "kconfigwidgets-5.22.0.tar.xz"; - }; - }; - kcoreaddons = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kcoreaddons-5.22.0.tar.xz"; - sha256 = "0zzwcw0n9bd3pi3rv7cdwynb67x1bqf1bh3s59hjipf9d412wl15"; - name = "kcoreaddons-5.22.0.tar.xz"; - }; - }; - kcrash = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kcrash-5.22.0.tar.xz"; - sha256 = "1r0i9ngk5jypzfhhssjm5b3n5sqli3jhh896r1qwpfcq9w15x7qg"; - name = "kcrash-5.22.0.tar.xz"; - }; - }; - kdbusaddons = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kdbusaddons-5.22.0.tar.xz"; - sha256 = "0w9spb5i5qi2r5kfgrylpvw6mwjxfhd4j7yslc9jy0q4y8j3f1dk"; - name = "kdbusaddons-5.22.0.tar.xz"; - }; - }; - kdeclarative = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kdeclarative-5.22.0.tar.xz"; - sha256 = "06n6wqy8dm2hv6dbar453z4rmiyf6f34zak1fhs38sqkfy6syva1"; - name = "kdeclarative-5.22.0.tar.xz"; - }; - }; - kded = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kded-5.22.0.tar.xz"; - sha256 = "1zfggr6pmiypw5bnh6hr22agms589hm7hw35nhfhc4r7qd1drf6q"; - name = "kded-5.22.0.tar.xz"; - }; - }; - kdelibs4support = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/portingAids/kdelibs4support-5.22.0.tar.xz"; - sha256 = "1mmrr54kkicnz4pjksnrh40md80m18mr5ba2la7kwjxmdyl6znm3"; - name = "kdelibs4support-5.22.0.tar.xz"; - }; - }; - kdesignerplugin = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kdesignerplugin-5.22.0.tar.xz"; - sha256 = "0cfnmpz845l39qpy5r6pknzm78js81bci9qi0xfnrf8gm3lvjg5l"; - name = "kdesignerplugin-5.22.0.tar.xz"; - }; - }; - kdesu = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kdesu-5.22.0.tar.xz"; - sha256 = "1jsr9m32dyzvsvsy743h3jih8v4yyr2zf15hh908anbamp7449bd"; - name = "kdesu-5.22.0.tar.xz"; - }; - }; - kdewebkit = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kdewebkit-5.22.0.tar.xz"; - sha256 = "0rmxa4j3jx7689jcf45fghh7jff16x34xrzrw0clg3fj4w47ik0b"; - name = "kdewebkit-5.22.0.tar.xz"; - }; - }; - kdnssd = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kdnssd-5.22.0.tar.xz"; - sha256 = "1b0s5gwn51zh2h5w2mzpzjj86qaz6pl7gzqf5q88vpzsiqjg14vp"; - name = "kdnssd-5.22.0.tar.xz"; - }; - }; - kdoctools = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kdoctools-5.22.0.tar.xz"; - sha256 = "0y4ayms0hyj4nv5flr0a198lb545plfbxkwhqsmzc0c77gagcw5k"; - name = "kdoctools-5.22.0.tar.xz"; - }; - }; - kemoticons = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kemoticons-5.22.0.tar.xz"; - sha256 = "1swrpqm441ngmps00hr15pgvw1382zbf2q2ncndj7i30725nfq1g"; - name = "kemoticons-5.22.0.tar.xz"; - }; - }; - kfilemetadata = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kfilemetadata-5.22.0.tar.xz"; - sha256 = "0p6s1r2qv5396ghkw79wyf7yf4hzj562yp83wgplwmr6lgh4b2fc"; - name = "kfilemetadata-5.22.0.tar.xz"; - }; - }; - kglobalaccel = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kglobalaccel-5.22.0.tar.xz"; - sha256 = "1m1aviz5g0vwk58j0z9jckz4rzns7md7mr3zlqqpvp1r032qc30k"; - name = "kglobalaccel-5.22.0.tar.xz"; - }; - }; - kguiaddons = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kguiaddons-5.22.0.tar.xz"; - sha256 = "10chxcvf4hxyfkgprsj7rg4dv788dzqjgsm6m0a4m6qmx12zhckh"; - name = "kguiaddons-5.22.0.tar.xz"; - }; - }; - khtml = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/portingAids/khtml-5.22.0.tar.xz"; - sha256 = "1w5q41fjrqqq91j3dvhc9lrrhvrwy1izws6af7srh768gn6yig0m"; - name = "khtml-5.22.0.tar.xz"; - }; - }; - ki18n = { - version = "5.22.1"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/ki18n-5.22.1.tar.xz"; - sha256 = "0fasp8akj6wysn4acf9vyivcgb8x9dlnhkqmw7j0g7z1qgvjn4pv"; - name = "ki18n-5.22.1.tar.xz"; - }; - }; - kiconthemes = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kiconthemes-5.22.0.tar.xz"; - sha256 = "1bh76f7kpha4c5qs3n8z6g1qah0rsk99yqcz8j1dlss4ws65j9j3"; - name = "kiconthemes-5.22.0.tar.xz"; - }; - }; - kidletime = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kidletime-5.22.0.tar.xz"; - sha256 = "0dgw0rin6wz31xdspbjpvcs5x1b163ggqkz2zn73zavbr7f5jypc"; - name = "kidletime-5.22.0.tar.xz"; - }; - }; - kimageformats = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kimageformats-5.22.0.tar.xz"; - sha256 = "0g3f73m3yj5iqivcsn83pm32w4l13zbyzz5azgm3jjfhgnd00c18"; - name = "kimageformats-5.22.0.tar.xz"; - }; - }; - kinit = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kinit-5.22.0.tar.xz"; - sha256 = "1f71y6gf00p4jkqvpzyjlbnwc4gvjl2h4wi61xhpjz8lrmpsb6ac"; - name = "kinit-5.22.0.tar.xz"; - }; - }; - kio = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kio-5.22.0.tar.xz"; - sha256 = "02knylbs9ymb8qm7fkp3dkdqc9cvgw2dwfl4phzl1iax2fx2zkqy"; - name = "kio-5.22.0.tar.xz"; - }; - }; - kitemmodels = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kitemmodels-5.22.0.tar.xz"; - sha256 = "03gnglfhpzrc67bi0xdcy4xdhankic5cqnpahp9wwsis12ac6i83"; - name = "kitemmodels-5.22.0.tar.xz"; - }; - }; - kitemviews = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kitemviews-5.22.0.tar.xz"; - sha256 = "0nhwg7bmv1c8p6pnbfsz96mq9wbq339ir9yp7kfnhfrg0wqi44ar"; - name = "kitemviews-5.22.0.tar.xz"; - }; - }; - kjobwidgets = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kjobwidgets-5.22.0.tar.xz"; - sha256 = "1inqrb0j64b3519qcr0wk9izd4c1zi4kfjc8wa04s2kwxg6z7j1p"; - name = "kjobwidgets-5.22.0.tar.xz"; - }; - }; - kjs = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/portingAids/kjs-5.22.0.tar.xz"; - sha256 = "0xqlkhm8r021xd5a25nwp9a4r7cbjkpqkc89fjma8qyvq5785qxw"; - name = "kjs-5.22.0.tar.xz"; - }; - }; - kjsembed = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/portingAids/kjsembed-5.22.0.tar.xz"; - sha256 = "0fcc1lm5l8r0lj35r3niliyn8zxr90by2vjc9krzfm4i7kwij7wb"; - name = "kjsembed-5.22.0.tar.xz"; - }; - }; - kmediaplayer = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/portingAids/kmediaplayer-5.22.0.tar.xz"; - sha256 = "1pn3fmaixcxba1wl63hblhnpj7jblrala9j3xrj8z2abhhfl5vzy"; - name = "kmediaplayer-5.22.0.tar.xz"; - }; - }; - knewstuff = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/knewstuff-5.22.0.tar.xz"; - sha256 = "1gr566k95bg58hpn569kkarmlxk5rp12jcxdp7ksw1j8mp6la7a7"; - name = "knewstuff-5.22.0.tar.xz"; - }; - }; - knotifications = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/knotifications-5.22.0.tar.xz"; - sha256 = "0fh6ahfr9pa8643i1ma40h7afnd1jn0m6dw5f9hgndxhwi6h3bps"; - name = "knotifications-5.22.0.tar.xz"; - }; - }; - knotifyconfig = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/knotifyconfig-5.22.0.tar.xz"; - sha256 = "0p4g7wv2w6cpjzhlkh7rnzzhwcj86sgz98fl97is1fl65q8f0szr"; - name = "knotifyconfig-5.22.0.tar.xz"; - }; - }; - kpackage = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kpackage-5.22.0.tar.xz"; - sha256 = "1nbwjc4n8f2iisdckm5ll3qyls1sq02ia6vmhj4mfm4w44q4s1bk"; - name = "kpackage-5.22.0.tar.xz"; - }; - }; - kparts = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kparts-5.22.0.tar.xz"; - sha256 = "091wm2flhqgpqsffdd8nlwbdffvsj7cyd0c46949d9chm64723cg"; - name = "kparts-5.22.0.tar.xz"; - }; - }; - kpeople = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kpeople-5.22.0.tar.xz"; - sha256 = "0rbwxzmyaig92vcd26v1yqd13swk15pp0lpvjp6hdpxbhpxijyf7"; - name = "kpeople-5.22.0.tar.xz"; - }; - }; - kplotting = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kplotting-5.22.0.tar.xz"; - sha256 = "0ljiyxa2320v937lkqkxx3jc7sg45z4vjl74lxfybwspgs6y5hqk"; - name = "kplotting-5.22.0.tar.xz"; - }; - }; - kpty = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kpty-5.22.0.tar.xz"; - sha256 = "12lfwv45d06ksx5xc4hgk075mj2ckkqpc8mksx99f700yvcyk1db"; - name = "kpty-5.22.0.tar.xz"; - }; - }; - kross = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/portingAids/kross-5.22.0.tar.xz"; - sha256 = "1ika9ha06vspjn8hy6mv5vi5n7xj7sj45csmjjxcqwhn2wlcdj4l"; - name = "kross-5.22.0.tar.xz"; - }; - }; - krunner = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/krunner-5.22.0.tar.xz"; - sha256 = "09jhdy48dciqd8hwxmvjyw547fr48mzns5f0yknsnnb8a47yhrd4"; - name = "krunner-5.22.0.tar.xz"; - }; - }; - kservice = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kservice-5.22.0.tar.xz"; - sha256 = "1c5q8cxghbji3imamjbxymcd5cz9a9rapqriy1wmskys3ms3fag9"; - name = "kservice-5.22.0.tar.xz"; - }; - }; - ktexteditor = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/ktexteditor-5.22.0.tar.xz"; - sha256 = "1jsa8cfq0245bsris46i3k8f8g7l0sc5jpj4iwkxrl9m0nk5j1v0"; - name = "ktexteditor-5.22.0.tar.xz"; - }; - }; - ktextwidgets = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/ktextwidgets-5.22.0.tar.xz"; - sha256 = "01a2vkdpq06libap5g6a90jrcc0phmfd859kilraqyxhbrp9sw5l"; - name = "ktextwidgets-5.22.0.tar.xz"; - }; - }; - kunitconversion = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kunitconversion-5.22.0.tar.xz"; - sha256 = "1phbqxddp8ks36nr4982n4bwwx7d6yxll629gpb0ddc4yfsjv48p"; - name = "kunitconversion-5.22.0.tar.xz"; - }; - }; - kwallet = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kwallet-5.22.0.tar.xz"; - sha256 = "1i20kp1gkdiwmwy8vf7vd6r89qx6lpxwr6nib35khp93ci9l3838"; - name = "kwallet-5.22.0.tar.xz"; - }; - }; - kwayland = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kwayland-5.22.0.tar.xz"; - sha256 = "1jfibqai7vy1vklj19x7z0r4qc0rc7yd5r4wpp98mmdwzpnhlrgy"; - name = "kwayland-5.22.0.tar.xz"; - }; - }; - kwidgetsaddons = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kwidgetsaddons-5.22.0.tar.xz"; - sha256 = "1bwmnfa1l3s33nc6b0ryk78gxhrynyd07ffqw7mw211r34pg4c14"; - name = "kwidgetsaddons-5.22.0.tar.xz"; - }; - }; - kwindowsystem = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kwindowsystem-5.22.0.tar.xz"; - sha256 = "05jwmjqk03pc2g09rnyb9qh0dfi0c46awbaxgc7i7z4i9swv1k30"; - name = "kwindowsystem-5.22.0.tar.xz"; - }; - }; - kxmlgui = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kxmlgui-5.22.0.tar.xz"; - sha256 = "16q222jvnsd6pj49ih44qpks97lcjsamcpjg5x5ysn4a6w5h4mds"; - name = "kxmlgui-5.22.0.tar.xz"; - }; - }; - kxmlrpcclient = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kxmlrpcclient-5.22.0.tar.xz"; - sha256 = "00qj4pa7r0ny6pwivq6qqw80v4dsg9lgwd2qdlp9kddi0f8i2p1b"; - name = "kxmlrpcclient-5.22.0.tar.xz"; - }; - }; - modemmanager-qt = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/modemmanager-qt-5.22.0.tar.xz"; - sha256 = "1b1gx33vrw7qcvy3zlc01x7wlalx5csfl590gfxlf870i3m7dnhf"; - name = "modemmanager-qt-5.22.0.tar.xz"; - }; - }; - networkmanager-qt = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/networkmanager-qt-5.22.0.tar.xz"; - sha256 = "03b710n4107qw9c3p7wdma9fz9vqixrjydfa02f7vgzw1rixmmqq"; - name = "networkmanager-qt-5.22.0.tar.xz"; - }; - }; - oxygen-icons5 = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/oxygen-icons5-5.22.0.tar.xz"; - sha256 = "1m3f5wrgahqlzzl3jyfymh6n515fsmsi8ckimvma2d8qqpb0dc2l"; - name = "oxygen-icons5-5.22.0.tar.xz"; - }; - }; - plasma-framework = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/plasma-framework-5.22.0.tar.xz"; - sha256 = "1wn7ib030dw8rj5dprl8bzz4c3dv4nlmrfb9wgr6x78w4ac967zc"; - name = "plasma-framework-5.22.0.tar.xz"; - }; - }; - solid = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/solid-5.22.0.tar.xz"; - sha256 = "04a7z5g2ylhbj2572wa6w51cs98ddn4d7lfirzawxf0f8d2693w2"; - name = "solid-5.22.0.tar.xz"; - }; - }; - sonnet = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/sonnet-5.22.0.tar.xz"; - sha256 = "0y8l3mfa65a59vjj424ga87q3bixx8inicp2jp9zi36p4g7xwww8"; - name = "sonnet-5.22.0.tar.xz"; - }; - }; - threadweaver = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/threadweaver-5.22.0.tar.xz"; - sha256 = "1ax58k6nl8za79j99spa2r76m9xz8ih9iflksgpng40wlnkwlp59"; - name = "threadweaver-5.22.0.tar.xz"; - }; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.22/attica.nix b/pkgs/desktops/kde-5/frameworks-5.24/attica.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/attica.nix rename to pkgs/desktops/kde-5/frameworks-5.24/attica.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/baloo.nix b/pkgs/desktops/kde-5/frameworks-5.24/baloo.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/baloo.nix rename to pkgs/desktops/kde-5/frameworks-5.24/baloo.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/bluez-qt.nix b/pkgs/desktops/kde-5/frameworks-5.24/bluez-qt.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/bluez-qt.nix rename to pkgs/desktops/kde-5/frameworks-5.24/bluez-qt.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/breeze-icons.nix b/pkgs/desktops/kde-5/frameworks-5.24/breeze-icons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/breeze-icons.nix rename to pkgs/desktops/kde-5/frameworks-5.24/breeze-icons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/default.nix similarity index 99% rename from pkgs/desktops/kde-5/frameworks-5.22/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/default.nix index 4d0567846f8..851c142fe2d 100644 --- a/pkgs/desktops/kde-5/frameworks-5.22/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.24/default.nix @@ -106,6 +106,7 @@ let ktextwidgets = callPackage ./ktextwidgets.nix {}; kunitconversion = callPackage ./kunitconversion.nix {}; kwallet = callPackage ./kwallet.nix {}; + kwayland = callPackage ./kwayland.nix {}; kwidgetsaddons = callPackage ./kwidgetsaddons.nix {}; kwindowsystem = callPackage ./kwindowsystem.nix {}; kxmlgui = callPackage ./kxmlgui.nix {}; diff --git a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/nix-lib-path.patch b/pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/nix-lib-path.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/nix-lib-path.patch rename to pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/nix-lib-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/series b/pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/series rename to pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh rename to pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.22/frameworkintegration.nix b/pkgs/desktops/kde-5/frameworks-5.24/frameworkintegration.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/frameworkintegration.nix rename to pkgs/desktops/kde-5/frameworks-5.24/frameworkintegration.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kactivities-stats.nix b/pkgs/desktops/kde-5/frameworks-5.24/kactivities-stats.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kactivities-stats.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kactivities-stats.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kactivities.nix b/pkgs/desktops/kde-5/frameworks-5.24/kactivities.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kactivities.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kactivities.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kapidox.nix b/pkgs/desktops/kde-5/frameworks-5.24/kapidox.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kapidox.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kapidox.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/karchive.nix b/pkgs/desktops/kde-5/frameworks-5.24/karchive.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/karchive.nix rename to pkgs/desktops/kde-5/frameworks-5.24/karchive.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kauth/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks-5.24/kauth/cmake-install-paths.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kauth/cmake-install-paths.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kauth/cmake-install-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kauth/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kauth/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kauth/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kauth/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kauth/series b/pkgs/desktops/kde-5/frameworks-5.24/kauth/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kauth/series rename to pkgs/desktops/kde-5/frameworks-5.24/kauth/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kbookmarks.nix b/pkgs/desktops/kde-5/frameworks-5.24/kbookmarks.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kbookmarks.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kbookmarks.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcmutils/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.24/kcmutils/0001-qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kcmutils/0001-qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kcmutils/0001-qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcmutils/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kcmutils/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kcmutils/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kcmutils/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcodecs.nix b/pkgs/desktops/kde-5/frameworks-5.24/kcodecs.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kcodecs.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kcodecs.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcompletion.nix b/pkgs/desktops/kde-5/frameworks-5.24/kcompletion.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kcompletion.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kcompletion.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kconfig.nix b/pkgs/desktops/kde-5/frameworks-5.24/kconfig.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kconfig.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kconfig.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.24/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kconfigwidgets/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kconfigwidgets/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcoreaddons.nix b/pkgs/desktops/kde-5/frameworks-5.24/kcoreaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kcoreaddons.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kcoreaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcrash.nix b/pkgs/desktops/kde-5/frameworks-5.24/kcrash.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kcrash.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kcrash.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdbusaddons.nix b/pkgs/desktops/kde-5/frameworks-5.24/kdbusaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdbusaddons.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kdbusaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdeclarative.nix b/pkgs/desktops/kde-5/frameworks-5.24/kdeclarative.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdeclarative.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kdeclarative.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kded.nix b/pkgs/desktops/kde-5/frameworks-5.24/kded.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kded.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kded.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/nix-kde-include-dir.patch b/pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/nix-kde-include-dir.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/nix-kde-include-dir.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/nix-kde-include-dir.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/series b/pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/series rename to pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/setup-hook.sh rename to pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdesignerplugin.nix b/pkgs/desktops/kde-5/frameworks-5.24/kdesignerplugin.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdesignerplugin.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kdesignerplugin.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdesu.nix b/pkgs/desktops/kde-5/frameworks-5.24/kdesu.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdesu.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kdesu.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdnssd.nix b/pkgs/desktops/kde-5/frameworks-5.24/kdnssd.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdnssd.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kdnssd.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdoctools/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kdoctools/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdoctools/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kdoctools/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdoctools/kdoctools-no-find-docbook-xml.patch b/pkgs/desktops/kde-5/frameworks-5.24/kdoctools/kdoctools-no-find-docbook-xml.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdoctools/kdoctools-no-find-docbook-xml.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kdoctools/kdoctools-no-find-docbook-xml.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdoctools/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.24/kdoctools/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdoctools/setup-hook.sh rename to pkgs/desktops/kde-5/frameworks-5.24/kdoctools/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kemoticons.nix b/pkgs/desktops/kde-5/frameworks-5.24/kemoticons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kemoticons.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kemoticons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/cmake-install-paths.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/cmake-install-paths.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/cmake-install-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/series b/pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/series rename to pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kglobalaccel.nix b/pkgs/desktops/kde-5/frameworks-5.24/kglobalaccel.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kglobalaccel.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kglobalaccel.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kguiaddons.nix b/pkgs/desktops/kde-5/frameworks-5.24/kguiaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kguiaddons.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kguiaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/khtml.nix b/pkgs/desktops/kde-5/frameworks-5.24/khtml.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/khtml.nix rename to pkgs/desktops/kde-5/frameworks-5.24/khtml.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ki18n.nix b/pkgs/desktops/kde-5/frameworks-5.24/ki18n.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/ki18n.nix rename to pkgs/desktops/kde-5/frameworks-5.24/ki18n.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default-theme-breeze.patch b/pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/default-theme-breeze.patch similarity index 91% rename from pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default-theme-breeze.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/default-theme-breeze.patch index 5b3b15d5d5b..f7cb0ea3aac 100644 --- a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default-theme-breeze.patch +++ b/pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/default-theme-breeze.patch @@ -6,7 +6,7 @@ Index: kiconthemes-5.17.0/src/kicontheme.cpp // static QString KIconTheme::defaultThemeName() { -- return QStringLiteral("oxygen"); +- return QStringLiteral("hicolor"); + return QStringLiteral("breeze"); } diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/default.nix similarity index 70% rename from pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/default.nix index 4e868480636..825b15c8177 100644 --- a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/default.nix @@ -1,6 +1,6 @@ { kdeFramework, lib, copyPathsToStore , extra-cmake-modules, makeQtWrapper -, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg +, karchive, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg }: kdeFramework { @@ -8,7 +8,7 @@ kdeFramework { meta = { maintainers = [ lib.maintainers.ttuegel ]; }; patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - propagatedBuildInputs = [ breeze-icons kconfigwidgets ki18n kitemviews qtsvg ]; + propagatedBuildInputs = [ breeze-icons kconfigwidgets karchive ki18n kitemviews qtsvg ]; postInstall = '' wrapQtProgram "$out/bin/kiconfinder5" ''; diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/series b/pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/series rename to pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kidletime.nix b/pkgs/desktops/kde-5/frameworks-5.24/kidletime.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kidletime.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kidletime.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kimageformats.nix b/pkgs/desktops/kde-5/frameworks-5.24/kimageformats.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kimageformats.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kimageformats.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kinit/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kinit/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kinit/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kinit/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kinit/kinit-libpath.patch b/pkgs/desktops/kde-5/frameworks-5.24/kinit/kinit-libpath.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kinit/kinit-libpath.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kinit/kinit-libpath.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kinit/series b/pkgs/desktops/kde-5/frameworks-5.24/kinit/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kinit/series rename to pkgs/desktops/kde-5/frameworks-5.24/kinit/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kio/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kio/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kio/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kio/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kio/samba-search-path.patch b/pkgs/desktops/kde-5/frameworks-5.24/kio/samba-search-path.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kio/samba-search-path.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kio/samba-search-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kio/series b/pkgs/desktops/kde-5/frameworks-5.24/kio/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kio/series rename to pkgs/desktops/kde-5/frameworks-5.24/kio/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kitemmodels.nix b/pkgs/desktops/kde-5/frameworks-5.24/kitemmodels.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kitemmodels.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kitemmodels.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kitemviews.nix b/pkgs/desktops/kde-5/frameworks-5.24/kitemviews.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kitemviews.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kitemviews.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kjobwidgets.nix b/pkgs/desktops/kde-5/frameworks-5.24/kjobwidgets.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kjobwidgets.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kjobwidgets.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kjs.nix b/pkgs/desktops/kde-5/frameworks-5.24/kjs.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kjs.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kjs.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kjsembed.nix b/pkgs/desktops/kde-5/frameworks-5.24/kjsembed.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kjsembed.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kjsembed.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kmediaplayer.nix b/pkgs/desktops/kde-5/frameworks-5.24/kmediaplayer.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kmediaplayer.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kmediaplayer.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/knewstuff.nix b/pkgs/desktops/kde-5/frameworks-5.24/knewstuff.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/knewstuff.nix rename to pkgs/desktops/kde-5/frameworks-5.24/knewstuff.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/knotifications.nix b/pkgs/desktops/kde-5/frameworks-5.24/knotifications.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/knotifications.nix rename to pkgs/desktops/kde-5/frameworks-5.24/knotifications.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/knotifyconfig.nix b/pkgs/desktops/kde-5/frameworks-5.24/knotifyconfig.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/knotifyconfig.nix rename to pkgs/desktops/kde-5/frameworks-5.24/knotifyconfig.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpackage/allow-external-paths.patch b/pkgs/desktops/kde-5/frameworks-5.24/kpackage/allow-external-paths.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kpackage/allow-external-paths.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kpackage/allow-external-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpackage/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kpackage/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kpackage/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kpackage/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpackage/qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.24/kpackage/qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kpackage/qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kpackage/qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpackage/series b/pkgs/desktops/kde-5/frameworks-5.24/kpackage/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kpackage/series rename to pkgs/desktops/kde-5/frameworks-5.24/kpackage/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kparts.nix b/pkgs/desktops/kde-5/frameworks-5.24/kparts.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kparts.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kparts.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpeople.nix b/pkgs/desktops/kde-5/frameworks-5.24/kpeople.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kpeople.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kpeople.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kplotting.nix b/pkgs/desktops/kde-5/frameworks-5.24/kplotting.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kplotting.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kplotting.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpty.nix b/pkgs/desktops/kde-5/frameworks-5.24/kpty.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kpty.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kpty.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kross.nix b/pkgs/desktops/kde-5/frameworks-5.24/kross.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kross.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kross.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/krunner.nix b/pkgs/desktops/kde-5/frameworks-5.24/krunner.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/krunner.nix rename to pkgs/desktops/kde-5/frameworks-5.24/krunner.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kservice/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kservice/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kservice/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/no-canonicalize-path.patch b/pkgs/desktops/kde-5/frameworks-5.24/kservice/no-canonicalize-path.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kservice/no-canonicalize-path.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kservice/no-canonicalize-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.24/kservice/qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kservice/qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kservice/qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/series b/pkgs/desktops/kde-5/frameworks-5.24/kservice/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kservice/series rename to pkgs/desktops/kde-5/frameworks-5.24/kservice/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.24/kservice/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kservice/setup-hook.sh rename to pkgs/desktops/kde-5/frameworks-5.24/kservice/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/no-qcoreapplication.patch b/pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/no-qcoreapplication.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/no-qcoreapplication.patch rename to pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/no-qcoreapplication.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/series b/pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/series rename to pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ktextwidgets.nix b/pkgs/desktops/kde-5/frameworks-5.24/ktextwidgets.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/ktextwidgets.nix rename to pkgs/desktops/kde-5/frameworks-5.24/ktextwidgets.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kunitconversion.nix b/pkgs/desktops/kde-5/frameworks-5.24/kunitconversion.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kunitconversion.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kunitconversion.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kwallet.nix b/pkgs/desktops/kde-5/frameworks-5.24/kwallet.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kwallet.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kwallet.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kwayland.nix b/pkgs/desktops/kde-5/frameworks-5.24/kwayland.nix new file mode 100644 index 00000000000..db332841308 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.24/kwayland.nix @@ -0,0 +1,14 @@ +{ kdeFramework +, extra-cmake-modules +, wayland +}: + +kdeFramework { + name = "kwayland"; + nativeBuildInputs = [ + extra-cmake-modules + ]; + propagatedBuildInputs = [ + wayland + ]; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kwidgetsaddons.nix b/pkgs/desktops/kde-5/frameworks-5.24/kwidgetsaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kwidgetsaddons.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kwidgetsaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kwindowsystem.nix b/pkgs/desktops/kde-5/frameworks-5.24/kwindowsystem.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kwindowsystem.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kwindowsystem.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kxmlgui.nix b/pkgs/desktops/kde-5/frameworks-5.24/kxmlgui.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kxmlgui.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kxmlgui.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kxmlrpcclient.nix b/pkgs/desktops/kde-5/frameworks-5.24/kxmlrpcclient.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kxmlrpcclient.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kxmlrpcclient.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/modemmanager-qt.nix b/pkgs/desktops/kde-5/frameworks-5.24/modemmanager-qt.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/modemmanager-qt.nix rename to pkgs/desktops/kde-5/frameworks-5.24/modemmanager-qt.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/networkmanager-qt.nix b/pkgs/desktops/kde-5/frameworks-5.24/networkmanager-qt.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/networkmanager-qt.nix rename to pkgs/desktops/kde-5/frameworks-5.24/networkmanager-qt.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/oxygen-icons5.nix b/pkgs/desktops/kde-5/frameworks-5.24/oxygen-icons5.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/oxygen-icons5.nix rename to pkgs/desktops/kde-5/frameworks-5.24/oxygen-icons5.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/plasma-framework.nix b/pkgs/desktops/kde-5/frameworks-5.24/plasma-framework.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/plasma-framework.nix rename to pkgs/desktops/kde-5/frameworks-5.24/plasma-framework.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/solid.nix b/pkgs/desktops/kde-5/frameworks-5.24/solid.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/solid.nix rename to pkgs/desktops/kde-5/frameworks-5.24/solid.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/sonnet.nix b/pkgs/desktops/kde-5/frameworks-5.24/sonnet.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/sonnet.nix rename to pkgs/desktops/kde-5/frameworks-5.24/sonnet.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/srcs.nix b/pkgs/desktops/kde-5/frameworks-5.24/srcs.nix new file mode 100644 index 00000000000..5c48ece1e99 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.24/srcs.nix @@ -0,0 +1,581 @@ +# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh +{ fetchurl, mirror }: + +{ + attica = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/attica-5.24.0.tar.xz"; + sha256 = "0d368gmds7m7k5pnn625wqsij38cvxk1gkm4zv24phnk9f67v7cw"; + name = "attica-5.24.0.tar.xz"; + }; + }; + baloo = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/baloo-5.24.0.tar.xz"; + sha256 = "1ayfdg6j9lvas17ryjdv4a0kaj6vw3bxfy2x9nadl0gkc9pak4nh"; + name = "baloo-5.24.0.tar.xz"; + }; + }; + bluez-qt = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/bluez-qt-5.24.0.tar.xz"; + sha256 = "0gy0m7lcwwklf021l5i3v7j0cl7qz7cgvzrwpj87ix3kyw5xs80z"; + name = "bluez-qt-5.24.0.tar.xz"; + }; + }; + breeze-icons = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/breeze-icons-5.24.0.tar.xz"; + sha256 = "1dh7bijx99sdb3vn6394wmm5cq0fvvmz8h17sx4hakmbga849cx2"; + name = "breeze-icons-5.24.0.tar.xz"; + }; + }; + extra-cmake-modules = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/extra-cmake-modules-5.24.0.tar.xz"; + sha256 = "01m12ml529pwr2sal951r5z6yb1rwbpid1y4k14nlk3xqgmdakwa"; + name = "extra-cmake-modules-5.24.0.tar.xz"; + }; + }; + frameworkintegration = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/frameworkintegration-5.24.0.tar.xz"; + sha256 = "0brqgq05m06d98qqvyh30727f5z7hlzxgqysfhfvqzcf3x7f6yzj"; + name = "frameworkintegration-5.24.0.tar.xz"; + }; + }; + kactivities = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kactivities-5.24.0.tar.xz"; + sha256 = "0s8g43zk6h35bq1am1nnhj0qvmhd6kz42gs8l7ybga0367jghzhf"; + name = "kactivities-5.24.0.tar.xz"; + }; + }; + kactivities-stats = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kactivities-stats-5.24.0.tar.xz"; + sha256 = "1z3xvpifxbd05b2xaxxyiypcpid7jgjb1qpwiyjj1gnfp4rjmzpc"; + name = "kactivities-stats-5.24.0.tar.xz"; + }; + }; + kapidox = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kapidox-5.24.0.tar.xz"; + sha256 = "19a7alvn71nxflsyi7y3hghx1iw04qqc77qy54mcxcpkiyvpsggf"; + name = "kapidox-5.24.0.tar.xz"; + }; + }; + karchive = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/karchive-5.24.0.tar.xz"; + sha256 = "1n5nfhrfvqnrdjgjjy7arqik4fya5bp3dvxa16mlhqr19azkavzq"; + name = "karchive-5.24.0.tar.xz"; + }; + }; + kauth = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kauth-5.24.0.tar.xz"; + sha256 = "14sjjfgl3arqyqcr77w9qhpnd8mrnh53r5rfss6bvlk26bmihs49"; + name = "kauth-5.24.0.tar.xz"; + }; + }; + kbookmarks = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kbookmarks-5.24.0.tar.xz"; + sha256 = "10d8dnhvbrwp0dbmz93cqfdff6ir8iy3yiwaf9ihj6ma124qlyjn"; + name = "kbookmarks-5.24.0.tar.xz"; + }; + }; + kcmutils = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kcmutils-5.24.0.tar.xz"; + sha256 = "0aws1c76s6wbp0xpr6qv6cfwq8dw82v00pkf9gy84sbxknwjnizk"; + name = "kcmutils-5.24.0.tar.xz"; + }; + }; + kcodecs = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kcodecs-5.24.0.tar.xz"; + sha256 = "1qpzjh3qc2zz80j2bmlinipbispms14k9bmqw8v61zhi6in9z14c"; + name = "kcodecs-5.24.0.tar.xz"; + }; + }; + kcompletion = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kcompletion-5.24.0.tar.xz"; + sha256 = "1qln0v31gn86kzwhnkijr1ydf129n32jmiybbckrp4w6hyx6xfxv"; + name = "kcompletion-5.24.0.tar.xz"; + }; + }; + kconfig = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kconfig-5.24.0.tar.xz"; + sha256 = "1dc2i6icyigw1j6qxgdza6j2g8afh390qmxsa2a54mwl84fkfmxv"; + name = "kconfig-5.24.0.tar.xz"; + }; + }; + kconfigwidgets = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kconfigwidgets-5.24.0.tar.xz"; + sha256 = "0v25r50gh5i984lzlv0rradghglcfqf0gsfmnkn23h87b86fm9l2"; + name = "kconfigwidgets-5.24.0.tar.xz"; + }; + }; + kcoreaddons = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kcoreaddons-5.24.0.tar.xz"; + sha256 = "06sx7by3nvaridnavj5p0bxv4nh47n708jlacfw8ydaikmd9i03h"; + name = "kcoreaddons-5.24.0.tar.xz"; + }; + }; + kcrash = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kcrash-5.24.0.tar.xz"; + sha256 = "1lahgfwlp9b5rsl244kzp7rsl4ybv1q4qlvpv0xxz5ygssk48l0w"; + name = "kcrash-5.24.0.tar.xz"; + }; + }; + kdbusaddons = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kdbusaddons-5.24.0.tar.xz"; + sha256 = "183nxqrhz4qk4qfp1w4an0scp2dvfqcaqbpg4cgbgk0z590q0pkk"; + name = "kdbusaddons-5.24.0.tar.xz"; + }; + }; + kdeclarative = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kdeclarative-5.24.0.tar.xz"; + sha256 = "00ik9q1r6y6g5rkdq96yczgrxmcg85x00lipyljvc3x6xw6bixbz"; + name = "kdeclarative-5.24.0.tar.xz"; + }; + }; + kded = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kded-5.24.0.tar.xz"; + sha256 = "0ngpxdxb596myn5r4kjxahx195bwklq33yvgjvcbxi2clg2wccaj"; + name = "kded-5.24.0.tar.xz"; + }; + }; + kdelibs4support = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/portingAids/kdelibs4support-5.24.0.tar.xz"; + sha256 = "12sis63mq6i372bhx64x8y0pw6czrv64hdhjscx27cx65a4ir451"; + name = "kdelibs4support-5.24.0.tar.xz"; + }; + }; + kdesignerplugin = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kdesignerplugin-5.24.0.tar.xz"; + sha256 = "0i0s8pwwhwh5hyyvkv0cnj0yyv0g5bnm5xw18knv2yagiy4bvb2j"; + name = "kdesignerplugin-5.24.0.tar.xz"; + }; + }; + kdesu = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kdesu-5.24.0.tar.xz"; + sha256 = "1ivcnhgvq75xvl0w9g7m45qzallz42ijaq0n1ap09lpdfmjbnrxk"; + name = "kdesu-5.24.0.tar.xz"; + }; + }; + kdewebkit = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kdewebkit-5.24.0.tar.xz"; + sha256 = "1xq36zv7vnllhqbisl6kcna8z6qzlvy29a47g0hbzgl8rc93qskf"; + name = "kdewebkit-5.24.0.tar.xz"; + }; + }; + kdnssd = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kdnssd-5.24.0.tar.xz"; + sha256 = "01b650g031apxc3vd2m91g2fxqk9l8ap67z6rafniphfwy8i0d5m"; + name = "kdnssd-5.24.0.tar.xz"; + }; + }; + kdoctools = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kdoctools-5.24.0.tar.xz"; + sha256 = "1r129kpq0d11b9l87cqbal6fm5ycwhsps1g3r1a7jsxz70scz4ri"; + name = "kdoctools-5.24.0.tar.xz"; + }; + }; + kemoticons = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kemoticons-5.24.0.tar.xz"; + sha256 = "0gmc52k5jb553jvzxwsq79v5y87kgav8i5qqv4bqc9yl7p866zhn"; + name = "kemoticons-5.24.0.tar.xz"; + }; + }; + kfilemetadata = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kfilemetadata-5.24.0.tar.xz"; + sha256 = "02n9qhpr0jlwdgdbid0k34abhs3bzhlsa56ybl5dq1aib6izk1sy"; + name = "kfilemetadata-5.24.0.tar.xz"; + }; + }; + kglobalaccel = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kglobalaccel-5.24.0.tar.xz"; + sha256 = "123v0ld1q88hbm3d0mqgq6lcivfkqh7pbz4hb4n76ab5v43qc15c"; + name = "kglobalaccel-5.24.0.tar.xz"; + }; + }; + kguiaddons = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kguiaddons-5.24.0.tar.xz"; + sha256 = "0ig96ah20ybg5rwpswj9va2klvkh2q4amwxmgy3z4niwfsm2g3ic"; + name = "kguiaddons-5.24.0.tar.xz"; + }; + }; + khtml = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/portingAids/khtml-5.24.0.tar.xz"; + sha256 = "0f19m8ycaa41p61i0j43gafn364abral8dbiqhr0qcj33nsa4134"; + name = "khtml-5.24.0.tar.xz"; + }; + }; + ki18n = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/ki18n-5.24.0.tar.xz"; + sha256 = "0cw24spmwsqa3ppkw03cm6yjd3sfll0dbbk2ya76fd4nw9hb00dv"; + name = "ki18n-5.24.0.tar.xz"; + }; + }; + kiconthemes = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kiconthemes-5.24.0.tar.xz"; + sha256 = "1k5zig2n6wzfyv6pc8dpas2862mxjyxxza00m31myrfw5i1a1h6m"; + name = "kiconthemes-5.24.0.tar.xz"; + }; + }; + kidletime = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kidletime-5.24.0.tar.xz"; + sha256 = "09jsj0pj27h93nr8v46savs6b93h8frydinfr7wlijkvpsl02jb4"; + name = "kidletime-5.24.0.tar.xz"; + }; + }; + kimageformats = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kimageformats-5.24.0.tar.xz"; + sha256 = "12mhgckmhnvcnm8k7mk15mipxrnm7i9ip7ykbjh8nxjiwyk1pmwc"; + name = "kimageformats-5.24.0.tar.xz"; + }; + }; + kinit = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kinit-5.24.0.tar.xz"; + sha256 = "1i7l6gid5hrrfglw1c461gpjg51dwz7cl4lx7ll8vz2ha8mz4d3n"; + name = "kinit-5.24.0.tar.xz"; + }; + }; + kio = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kio-5.24.0.tar.xz"; + sha256 = "0zncj9yf8zaylazlwvirylpk9vki3j889b1x2s0aav54vvj7vdi5"; + name = "kio-5.24.0.tar.xz"; + }; + }; + kitemmodels = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kitemmodels-5.24.0.tar.xz"; + sha256 = "1s1p4nw1pqdzbdwvjnka17p9avf00wadr437p4f96md1lvh3sh69"; + name = "kitemmodels-5.24.0.tar.xz"; + }; + }; + kitemviews = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kitemviews-5.24.0.tar.xz"; + sha256 = "0y3fx9hk1x27arrmwfzq783a44cs7p8dpmhxrwzh0di4mwa8jafw"; + name = "kitemviews-5.24.0.tar.xz"; + }; + }; + kjobwidgets = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kjobwidgets-5.24.0.tar.xz"; + sha256 = "1mcvrz66xcqjgbp08zpqsf943cm462wbqm5gh719p9s25hx8hwrc"; + name = "kjobwidgets-5.24.0.tar.xz"; + }; + }; + kjs = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/portingAids/kjs-5.24.0.tar.xz"; + sha256 = "1qd5sdfrdg7id0g5mwf3ijwlfvh3g36kwnckw6kwns1nf4q6gwlz"; + name = "kjs-5.24.0.tar.xz"; + }; + }; + kjsembed = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/portingAids/kjsembed-5.24.0.tar.xz"; + sha256 = "1nx8ch8mzd1jyx8pd46364ij0bsbsclbipbgr6jm9aak3n13b0nw"; + name = "kjsembed-5.24.0.tar.xz"; + }; + }; + kmediaplayer = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/portingAids/kmediaplayer-5.24.0.tar.xz"; + sha256 = "147xrffkvkyv3h8ighc1vlwksysfrqc0g55k8zrd72l6r0kjjh0p"; + name = "kmediaplayer-5.24.0.tar.xz"; + }; + }; + knewstuff = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/knewstuff-5.24.0.tar.xz"; + sha256 = "0xdv3wh3100vzsx8p2zihy1dvh0wzfmrjkjq71v8igwz5d291zsj"; + name = "knewstuff-5.24.0.tar.xz"; + }; + }; + knotifications = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/knotifications-5.24.0.tar.xz"; + sha256 = "0qryp41phnpx4r9wa6rfhmnzy7nxl0ijnyrafadf2n2xb53ipkpa"; + name = "knotifications-5.24.0.tar.xz"; + }; + }; + knotifyconfig = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/knotifyconfig-5.24.0.tar.xz"; + sha256 = "1dij841fnqia4p44x2wnpdvl8cn3nkj833y0fah50fmipjc8r70b"; + name = "knotifyconfig-5.24.0.tar.xz"; + }; + }; + kpackage = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kpackage-5.24.0.tar.xz"; + sha256 = "03aqzkpqz3c1v4qgwfbs3ncdbapiyg7psrkhxqv3z48rklavk1ri"; + name = "kpackage-5.24.0.tar.xz"; + }; + }; + kparts = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kparts-5.24.0.tar.xz"; + sha256 = "0z7qr93aq02i7g7cxgypx2rzlnsvbsx9cjblb0ijmad1nb8w3mix"; + name = "kparts-5.24.0.tar.xz"; + }; + }; + kpeople = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kpeople-5.24.0.tar.xz"; + sha256 = "0iknzkj23y927xh24kw5sjxyirhy6pkmfcmmgwzd78rba8a54qp2"; + name = "kpeople-5.24.0.tar.xz"; + }; + }; + kplotting = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kplotting-5.24.0.tar.xz"; + sha256 = "0gpypq9kh4b5s6dc7py3m117k3nbxczsfkxgxd9zxvr35kig7ya2"; + name = "kplotting-5.24.0.tar.xz"; + }; + }; + kpty = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kpty-5.24.0.tar.xz"; + sha256 = "1ybvdzqpa53kkki9p5da0ff9x3c63rmksk7865wqwlgy8apzi2fs"; + name = "kpty-5.24.0.tar.xz"; + }; + }; + kross = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/portingAids/kross-5.24.0.tar.xz"; + sha256 = "0f29dpmfcj173vqnmrbpvdmfmzzbfsds1lbl546qfx9a5acdpf2p"; + name = "kross-5.24.0.tar.xz"; + }; + }; + krunner = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/krunner-5.24.0.tar.xz"; + sha256 = "0ff87ijjd47jxf6zw2ggqgngnbyx1rj59wdfgy5wbi3acws6bafl"; + name = "krunner-5.24.0.tar.xz"; + }; + }; + kservice = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kservice-5.24.0.tar.xz"; + sha256 = "0w0nsg64d6xhgijr2vh0j5p544qi0q55jpqa9v9mv956zrrdssdk"; + name = "kservice-5.24.0.tar.xz"; + }; + }; + ktexteditor = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/ktexteditor-5.24.0.tar.xz"; + sha256 = "1ykj1kvm7k1vxb1w235d5hp2swwdqjyp2y4c3pxbvkn999h9x5q5"; + name = "ktexteditor-5.24.0.tar.xz"; + }; + }; + ktextwidgets = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/ktextwidgets-5.24.0.tar.xz"; + sha256 = "1q10xav2gkii6s3m31c9xvxf1988l7k2lpib6pyhgsidflmwjm02"; + name = "ktextwidgets-5.24.0.tar.xz"; + }; + }; + kunitconversion = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kunitconversion-5.24.0.tar.xz"; + sha256 = "03dfjn4lm6sl2zcdrvw0b9irzvkyc2w2j5xixag5j8nw373742h8"; + name = "kunitconversion-5.24.0.tar.xz"; + }; + }; + kwallet = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kwallet-5.24.0.tar.xz"; + sha256 = "0zad5h4vsvcl2xv3vxsjwh42b71xbp6x6rj8cvmw8szr2rzz9gsx"; + name = "kwallet-5.24.0.tar.xz"; + }; + }; + kwayland = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kwayland-5.24.0.tar.xz"; + sha256 = "1h5anbqrxcl1s8kx1l53vcsfr8ifamcjqd47dk8a7lwr1ga6myq2"; + name = "kwayland-5.24.0.tar.xz"; + }; + }; + kwidgetsaddons = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kwidgetsaddons-5.24.0.tar.xz"; + sha256 = "1kppx0ppfhnb6q6sijs2dffyar86wkkx8miqavsjsgw1l2wiymcx"; + name = "kwidgetsaddons-5.24.0.tar.xz"; + }; + }; + kwindowsystem = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kwindowsystem-5.24.0.tar.xz"; + sha256 = "0w5ym8msl80v3q65253pdpj9f1fmb658rnndlbkrgpmm1rv1n6dz"; + name = "kwindowsystem-5.24.0.tar.xz"; + }; + }; + kxmlgui = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kxmlgui-5.24.0.tar.xz"; + sha256 = "1qhixldhhcbklmrpjh67440h1rrzqy70h57hw6ialjdsr3pl6ihp"; + name = "kxmlgui-5.24.0.tar.xz"; + }; + }; + kxmlrpcclient = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kxmlrpcclient-5.24.0.tar.xz"; + sha256 = "06ap6ipzqimz1rfrcr7z8zc7idy7sg4a97dws7h52i34ms7jqnc8"; + name = "kxmlrpcclient-5.24.0.tar.xz"; + }; + }; + modemmanager-qt = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/modemmanager-qt-5.24.0.tar.xz"; + sha256 = "0khz5bf84xxa8aqpzwb6x839xx6dbiadwqhyj7cvgha65fh2xinh"; + name = "modemmanager-qt-5.24.0.tar.xz"; + }; + }; + networkmanager-qt = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/networkmanager-qt-5.24.0.tar.xz"; + sha256 = "11wy0ds0hqbba900ggkcxjfqc9n65xlzc3h1zv9433nn5d75v6fy"; + name = "networkmanager-qt-5.24.0.tar.xz"; + }; + }; + oxygen-icons5 = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/oxygen-icons5-5.24.0.tar.xz"; + sha256 = "1c7spjbzk04725vv0ly7vmyvwa96mfa5ki2pm146ld4888a896wm"; + name = "oxygen-icons5-5.24.0.tar.xz"; + }; + }; + plasma-framework = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/plasma-framework-5.24.0.tar.xz"; + sha256 = "0981vm00541dzihlr1fsax05biwp2ddpwjrmvnfysx5jagdc65cb"; + name = "plasma-framework-5.24.0.tar.xz"; + }; + }; + solid = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/solid-5.24.0.tar.xz"; + sha256 = "00wvsxcnvhdx7ijzpcz5wny2ypkxr1drdpr4yvawgpwa678l1107"; + name = "solid-5.24.0.tar.xz"; + }; + }; + sonnet = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/sonnet-5.24.0.tar.xz"; + sha256 = "152xz7fb1iwhb5w1n4xqvc648iaxi0inrl4kavxcsir61das1xyl"; + name = "sonnet-5.24.0.tar.xz"; + }; + }; + threadweaver = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/threadweaver-5.24.0.tar.xz"; + sha256 = "02g60zr9cc4bg1p90giich4n0qvqaiakz0y94qrnyj9f7fg0yksl"; + name = "threadweaver-5.24.0.tar.xz"; + }; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.22/threadweaver.nix b/pkgs/desktops/kde-5/frameworks-5.24/threadweaver.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/threadweaver.nix rename to pkgs/desktops/kde-5/frameworks-5.24/threadweaver.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ae9d92c908e..7cc039b6a94 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16142,7 +16142,7 @@ in kde5 = let - frameworks = import ../desktops/kde-5/frameworks-5.22 { inherit pkgs; }; + frameworks = import ../desktops/kde-5/frameworks-5.24 { inherit pkgs; }; plasma = import ../desktops/kde-5/plasma-5.7 { inherit pkgs; }; applications = import ../desktops/kde-5/applications-16.04 { inherit pkgs; }; merged = self: From dde259dfb5a0787b28e260da7575079bbabad6c3 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Jul 2016 20:56:50 +0200 Subject: [PATCH 012/123] linux: Add patch to fix CVE-2016-5829 (#16824) Fixed for all available 4.x series kernels. From CVE-2016-5829: Multiple heap-based buffer overflows in the hiddev_ioctl_usage function in drivers/hid/usbhid/hiddev.c in the Linux kernel through 4.6.3 allow local users to cause a denial of service or possibly have unspecified other impact via a crafted (1) HIDIOCGUSAGES or (2) HIDIOCSUSAGES ioctl call. --- pkgs/os-specific/linux/kernel/patches.nix | 10 +++++++++- pkgs/top-level/all-packages.nix | 23 +++++++++++++++++++---- 2 files changed, 28 insertions(+), 5 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index a5de48298e1..4f8d57acc17 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgs }: +{ stdenv, fetchurl, fetchpatch, pkgs }: let @@ -140,4 +140,12 @@ rec { { name = "qat_common_Makefile"; patch = ./qat_common_Makefile.patch; }; + + hiddev_CVE_2016_5829 = + { name = "hiddev_CVE_2016_5829"; + patch = fetchpatch { + url = "https://sources.debian.net/data/main/l/linux/4.6.3-1/debian/patches/bugfix/all/HID-hiddev-validate-num_values-for-HIDIOCGUSAGES-HID.patch"; + sha256 = "14rm1qr87p7a5prz8g5fwbpxzdp3ighj095x8rvhm8csm20wspyy"; + }; + }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 38d7250d280..4d40567f262 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10938,7 +10938,10 @@ in }; linux_4_1 = callPackage ../os-specific/linux/kernel/linux-4.1.nix { - kernelPatches = [ kernelPatches.bridge_stp_helper ] + kernelPatches = + [ kernelPatches.bridge_stp_helper + kernelPatches.hiddev_CVE_2016_5829 + ] ++ lib.optionals ((platform.kernelArch or null) == "mips") [ kernelPatches.mips_fpureg_emu kernelPatches.mips_fpu_sigill @@ -10947,7 +10950,11 @@ in }; linux_4_4 = callPackage ../os-specific/linux/kernel/linux-4.4.nix { - kernelPatches = [ kernelPatches.bridge_stp_helper kernelPatches.qat_common_Makefile ] + kernelPatches = + [ kernelPatches.bridge_stp_helper + kernelPatches.qat_common_Makefile + kernelPatches.hiddev_CVE_2016_5829 + ] ++ lib.optionals ((platform.kernelArch or null) == "mips") [ kernelPatches.mips_fpureg_emu kernelPatches.mips_fpu_sigill @@ -10956,7 +10963,11 @@ in }; linux_4_5 = callPackage ../os-specific/linux/kernel/linux-4.5.nix { - kernelPatches = [ kernelPatches.bridge_stp_helper kernelPatches.qat_common_Makefile ] + kernelPatches = + [ kernelPatches.bridge_stp_helper + kernelPatches.qat_common_Makefile + kernelPatches.hiddev_CVE_2016_5829 + ] ++ lib.optionals ((platform.kernelArch or null) == "mips") [ kernelPatches.mips_fpureg_emu kernelPatches.mips_fpu_sigill @@ -10965,7 +10976,11 @@ in }; linux_4_6 = callPackage ../os-specific/linux/kernel/linux-4.6.nix { - kernelPatches = [ kernelPatches.bridge_stp_helper kernelPatches.qat_common_Makefile ] + kernelPatches = + [ kernelPatches.bridge_stp_helper + kernelPatches.qat_common_Makefile + kernelPatches.hiddev_CVE_2016_5829 + ] ++ lib.optionals ((platform.kernelArch or null) == "mips") [ kernelPatches.mips_fpureg_emu kernelPatches.mips_fpu_sigill From f76e5ab0cf0aa28e437a6b1c4aef4a85d2901b73 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Mon, 27 Jun 2016 21:29:12 +0000 Subject: [PATCH 013/123] travis: split build into matrix of 3 This adds a 3rd matrix to be built by Travis. The new matrix "checks" the NixPkgs evaluation so the other 2 can save their resources for building. Hopefully, this will lead to less "out of space" errors that seem to be happening with Travis. Also adds folding. --- .travis.yml | 16 ++- maintainers/scripts/travis-nox-review-pr.sh | 115 +++++++++++--------- 2 files changed, 75 insertions(+), 56 deletions(-) diff --git a/.travis.yml b/.travis.yml index f29f71aa19f..e8994ca7b2e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,20 @@ matrix: - allow_failures: - - os: osx include: - os: linux language: generic sudo: required dist: trusty + script: + - ./maintainers/scripts/travis-nox-review-pr.sh verify + - ./maintainers/scripts/travis-nox-review-pr.sh check + - ./maintainers/scripts/travis-nox-review-pr.sh tarball + - os: linux + language: generic + sudo: required + dist: trusty + script: ./maintainers/scripts/travis-nox-review-pr.sh pr - os: osx language: generic osx_image: xcode7.3 -before_install: ./maintainers/scripts/travis-nox-review-pr.sh nix -install: ./maintainers/scripts/travis-nox-review-pr.sh nox -script: ./maintainers/scripts/travis-nox-review-pr.sh build + script: ./maintainers/scripts/travis-nox-review-pr.sh pr +install: ./maintainers/scripts/travis-nox-review-pr.sh install diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh index 092fc0cd9d0..025b27528e9 100755 --- a/maintainers/scripts/travis-nox-review-pr.sh +++ b/maintainers/scripts/travis-nox-review-pr.sh @@ -1,58 +1,71 @@ #! /usr/bin/env bash set -e +# This should make Curl silent +# but download-from-binary-cache doesn't respect export NIX_CURL_FLAGS=-sS -if [[ $1 == nix ]]; then - echo "=== Installing Nix..." - # Install Nix - bash <(curl -sS https://nixos.org/nix/install) +if [ -d $HOME/.nix-profile ]; then source $HOME/.nix-profile/etc/profile.d/nix.sh - - # Make sure we can use hydra's binary cache - sudo mkdir /etc/nix - sudo sh -c 'echo "build-max-jobs = 4" > /etc/nix/nix.conf' - - # Verify evaluation - echo "=== Verifying that nixpkgs evaluates..." - nix-env -f. -qa --json >/dev/null -elif [[ $1 == nox ]]; then - source $HOME/.nix-profile/etc/profile.d/nix.sh - echo "=== Installing nox..." - nix-build -A nox '' --show-trace -elif [[ $1 == build ]]; then - source $HOME/.nix-profile/etc/profile.d/nix.sh - - if [[ $TRAVIS_OS_NAME == "osx" ]]; then - echo "Skipping NixOS things on darwin" - else - # Nix builds in /tmp and we need exec support - sudo mount -o remount,exec /run - sudo mount -o remount,exec /run/user - sudo mount - - echo "=== Checking NixOS options" - nix-build nixos/release.nix -A options --show-trace - - echo "=== Checking tarball creation" - nix-build pkgs/top-level/release.nix -A tarball --show-trace - fi - - if [[ $TRAVIS_PULL_REQUEST == false ]]; then - echo "=== Not a pull request" - else - echo "=== Checking PR" - - if ! nix-shell -p nox --run "nox-review pr ${TRAVIS_PULL_REQUEST}"; then - if sudo dmesg | egrep 'Out of memory|Killed process' > /tmp/oom-log; then - echo "=== The build failed due to running out of memory:" - cat /tmp/oom-log - echo "=== Please disregard the result of this Travis build." - fi - exit 1 - fi - fi -else - echo "$0: Unknown option $1" >&2 - false fi + +while test -n "$1"; do + + # tell Travis to use folding + echo -en "travis_fold:start:$1\r" + + case $1 in + + install) + echo "=== Installing Nix..." + + curl -sS https://nixos.org/nix/install | sh + + # Make sure we can use hydra's binary cache + sudo mkdir /etc/nix + echo "build-max-jobs = 4" | sudo tee /etc/nix/nix.conf > /dev/null + + # Make sure we can execute within /tmp in Linux + if [ "$TRAVIS_OS_NAME" == "linux" ]; then + sudo mount -o remount,exec /run + sudo mount -o remount,exec /run/user + sudo mount > /dev/null + fi + ;; + + verify) + echo "=== Verifying that nixpkgs evaluates..." + + nix-env --file $TRAVIS_BUILD_DIR --query --available --json > /dev/null + ;; + + check) + echo "=== Checking NixOS options" + + nix-build $TRAVIS_BUILD_DIR/nixos/release.nix --attr options --show-trace + ;; + + tarball) + echo "=== Checking tarball creation" + + nix-build $TRAVIS_BUILD_DIR/pkgs/top-level/release.nix --attr tarball --show-trace + ;; + + pr) + if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then + echo "=== No pull request found" + else + echo "=== Building pull request #$TRAVIS_PULL_REQUEST" + + nix-shell --packages nox git --run "nox-review pr $TRAVIS_PULL_REQUEST" -I nixpkgs=$TRAVIS_BUILD_DIR + fi + ;; + + *) + echo "Skipping unknown option $1" + ;; + esac + + echo -en "travis_fold:end:$1\r" + shift +done From 3c0fdefd8470878242d8c119952918e171be590c Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Wed, 29 Jun 2016 21:04:44 +0000 Subject: [PATCH 014/123] travis: only fetch top commit This will make travis only fetch the top level commit instead of fetching the top 50 (default). Nox should be able fetch other commits on an as-needed basis. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index e8994ca7b2e..a70bf4a4408 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,3 +18,5 @@ matrix: osx_image: xcode7.3 script: ./maintainers/scripts/travis-nox-review-pr.sh pr install: ./maintainers/scripts/travis-nox-review-pr.sh install +git: + depth: 1 From 95b28da35365c51ff1673baca9469b7f74a5bcf0 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Thu, 30 Jun 2016 21:23:55 +0000 Subject: [PATCH 015/123] travis: use community supported language Switch to the "community supported" Nix version of Travis. --- .travis.yml | 8 ++----- maintainers/scripts/travis-nox-review-pr.sh | 25 --------------------- 2 files changed, 2 insertions(+), 31 deletions(-) diff --git a/.travis.yml b/.travis.yml index a70bf4a4408..3e2a506c3b5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,22 +1,18 @@ +language: nix matrix: include: - os: linux - language: generic - sudo: required - dist: trusty + sudo: false script: - ./maintainers/scripts/travis-nox-review-pr.sh verify - ./maintainers/scripts/travis-nox-review-pr.sh check - ./maintainers/scripts/travis-nox-review-pr.sh tarball - os: linux - language: generic sudo: required dist: trusty script: ./maintainers/scripts/travis-nox-review-pr.sh pr - os: osx - language: generic osx_image: xcode7.3 script: ./maintainers/scripts/travis-nox-review-pr.sh pr -install: ./maintainers/scripts/travis-nox-review-pr.sh install git: depth: 1 diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh index 025b27528e9..791a50b0ae8 100755 --- a/maintainers/scripts/travis-nox-review-pr.sh +++ b/maintainers/scripts/travis-nox-review-pr.sh @@ -1,14 +1,6 @@ #! /usr/bin/env bash set -e -# This should make Curl silent -# but download-from-binary-cache doesn't respect -export NIX_CURL_FLAGS=-sS - -if [ -d $HOME/.nix-profile ]; then - source $HOME/.nix-profile/etc/profile.d/nix.sh -fi - while test -n "$1"; do # tell Travis to use folding @@ -16,23 +8,6 @@ while test -n "$1"; do case $1 in - install) - echo "=== Installing Nix..." - - curl -sS https://nixos.org/nix/install | sh - - # Make sure we can use hydra's binary cache - sudo mkdir /etc/nix - echo "build-max-jobs = 4" | sudo tee /etc/nix/nix.conf > /dev/null - - # Make sure we can execute within /tmp in Linux - if [ "$TRAVIS_OS_NAME" == "linux" ]; then - sudo mount -o remount,exec /run - sudo mount -o remount,exec /run/user - sudo mount > /dev/null - fi - ;; - verify) echo "=== Verifying that nixpkgs evaluates..." From 2892bbd07a909feb928ed5f61d1705adff4f279a Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Mon, 4 Jul 2016 12:32:45 -0500 Subject: [PATCH 016/123] travis: support nox 0.0.4 arguments This adds the "slug" arguments and also the "token" argument. The slug argument provides the "owner_name/repo_name" format base repo to use for the pull request. The token argument provides the GitHub presonal access token to use for the requests to the GitHub API. --- maintainers/scripts/travis-nox-review-pr.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh index 791a50b0ae8..a992311436c 100755 --- a/maintainers/scripts/travis-nox-review-pr.sh +++ b/maintainers/scripts/travis-nox-review-pr.sh @@ -32,7 +32,12 @@ while test -n "$1"; do else echo "=== Building pull request #$TRAVIS_PULL_REQUEST" - nix-shell --packages nox git --run "nox-review pr $TRAVIS_PULL_REQUEST" -I nixpkgs=$TRAVIS_BUILD_DIR + token="" + if [ -n "$GITHUB_TOKEN" ]; then + token="--token $GITHUB_TOKEN" + fi + + nix-shell --packages nox git --run "nox-review pr --slug $TRAVIS_REPO_SLUG $token $TRAVIS_PULL_REQUEST" -I nixpkgs=$TRAVIS_BUILD_DIR fi ;; From d40066b49bed6792b2911d4503f2ab49e37e005d Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Mon, 4 Jul 2016 12:39:35 -0500 Subject: [PATCH 017/123] travis: set GITHUB_TOKEN variable in .travis.yml This should allow for more builds per hour and less errors from nox-review. --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 3e2a506c3b5..e3386d5a6c2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,3 +16,6 @@ matrix: script: ./maintainers/scripts/travis-nox-review-pr.sh pr git: depth: 1 +env: + global: + - GITHUB_TOKEN=5edaaf1017f691ed34e7f80878f8f5fbd071603f From 5282a336a4cda925f1e1d213702c3c31e2b3bcee Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Thu, 7 Jul 2016 19:18:42 +0000 Subject: [PATCH 018/123] travis: build manuals to verify that they work fixes #15109 --- .travis.yml | 5 ++--- maintainers/scripts/travis-nox-review-pr.sh | 20 ++++++++++++++++---- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index e3386d5a6c2..07e8006aa9a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,9 +4,8 @@ matrix: - os: linux sudo: false script: - - ./maintainers/scripts/travis-nox-review-pr.sh verify - - ./maintainers/scripts/travis-nox-review-pr.sh check - - ./maintainers/scripts/travis-nox-review-pr.sh tarball + - ./maintainers/scripts/travis-nox-review-pr.sh nixpkgs-verify nixpkgs-manual nixpkgs-tarball + - ./maintainers/scripts/travis-nox-review-pr.sh nixos-options nixos-manual - os: linux sudo: required dist: trusty diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh index a992311436c..35ac3d44304 100755 --- a/maintainers/scripts/travis-nox-review-pr.sh +++ b/maintainers/scripts/travis-nox-review-pr.sh @@ -8,20 +8,32 @@ while test -n "$1"; do case $1 in - verify) + nixpkgs-verify) echo "=== Verifying that nixpkgs evaluates..." nix-env --file $TRAVIS_BUILD_DIR --query --available --json > /dev/null ;; - check) + nixos-options) echo "=== Checking NixOS options" nix-build $TRAVIS_BUILD_DIR/nixos/release.nix --attr options --show-trace ;; - tarball) - echo "=== Checking tarball creation" + nixos-manual) + echo "=== Checking NixOS manuals" + + nix-build $TRAVIS_BUILD_DIR/nixos/release.nix --attr manual --show-trace + ;; + + nixpkgs-manual) + echo "=== Checking nixpkgs manuals" + + nix-build $TRAVIS_BUILD_DIR/pkgs/top-level/release.nix --attr manpages --show-trace + ;; + + nixpkgs-tarball) + echo "=== Checking nixpkgs tarball creation" nix-build $TRAVIS_BUILD_DIR/pkgs/top-level/release.nix --attr tarball --show-trace ;; From 7c37ac0edd999b2eb34fc91c2f91050e390ccaa2 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Thu, 7 Jul 2016 20:07:01 +0000 Subject: [PATCH 019/123] travis: run nixpkgs-lint in build script This will run nixpkgs-lint for each travis build. We'll disable "nixpkgs-lint" for now, it was a little too verbose: https://travis-ci.org/NixOS/nixpkgs/jobs/144290920 --- maintainers/scripts/travis-nox-review-pr.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh index 35ac3d44304..386868301a2 100755 --- a/maintainers/scripts/travis-nox-review-pr.sh +++ b/maintainers/scripts/travis-nox-review-pr.sh @@ -38,6 +38,12 @@ while test -n "$1"; do nix-build $TRAVIS_BUILD_DIR/pkgs/top-level/release.nix --attr tarball --show-trace ;; + nixpkgs-lint) + echo "=== Checking nixpkgs lint" + + nix-shell --packages nixpkgs-lint --run "nixpkgs-lint -f $TRAVIS_BUILD_DIR" + ;; + pr) if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo "=== No pull request found" From 3e582d39ef88657d43727813a174bc85d7b52b8a Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Tue, 12 Jul 2016 23:58:15 +0100 Subject: [PATCH 020/123] mpv: 0.17.0 -> 0.18.1 --- pkgs/applications/video/mpv/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/mpv/default.nix b/pkgs/applications/video/mpv/default.nix index bd1af2ce29a..23f6daf0d61 100644 --- a/pkgs/applications/video/mpv/default.nix +++ b/pkgs/applications/video/mpv/default.nix @@ -62,11 +62,11 @@ in stdenv.mkDerivation rec { name = "mpv-${version}"; - version = "0.17.0"; + version = "0.18.1"; src = fetchurl { url = "https://github.com/mpv-player/mpv/archive/v${version}.tar.gz"; - sha256 = "0vms3viwqcwl1mrgmf2yy4c69fvv7xpbkyrl693l6zpwynqd4b30"; + sha256 = "0ab3lkvx1j06x7qlp9m4r4zk28dr7z8ki3w4kfgkpm2axizxa4z4"; }; patchPhase = '' From f51f6a36e8d52a24b93163903757ae1d12f7e887 Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Wed, 13 Jul 2016 00:22:44 +0100 Subject: [PATCH 021/123] lxc: 2.0.1 -> 2.0.3 --- pkgs/os-specific/linux/lxc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/lxc/default.nix b/pkgs/os-specific/linux/lxc/default.nix index eda1863ec97..f15f72ca5bc 100644 --- a/pkgs/os-specific/linux/lxc/default.nix +++ b/pkgs/os-specific/linux/lxc/default.nix @@ -12,11 +12,11 @@ in with stdenv.lib; stdenv.mkDerivation rec { name = "lxc-${version}"; - version = "2.0.1"; + version = "2.0.3"; src = fetchurl { url = "https://linuxcontainers.org/downloads/lxc/lxc-${version}.tar.gz"; - sha256 = "0l4fs6ckvip5akfa0vbjfk34ddvcv0c84mmpj9yrcfl67qwn31z9"; + sha256 = "1mp83r1v9bcxjl7a441sm6plipj8aglhnmkxczp3jinlrnh41pw2"; }; nativeBuildInputs = [ From ab6fc297198b03b32eaa044bbc975bb701cd879b Mon Sep 17 00:00:00 2001 From: obadz Date: Wed, 13 Jul 2016 01:47:49 +0200 Subject: [PATCH 022/123] ecryptfs: add nixos/tests/ecryptfs.nix --- nixos/tests/ecryptfs.nix | 78 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 nixos/tests/ecryptfs.nix diff --git a/nixos/tests/ecryptfs.nix b/nixos/tests/ecryptfs.nix new file mode 100644 index 00000000000..f42ae1dac62 --- /dev/null +++ b/nixos/tests/ecryptfs.nix @@ -0,0 +1,78 @@ +import ./make-test.nix ({ pkgs, ... }: +{ + name = "ecryptfs"; + + machine = { config, pkgs, ... }: { + imports = [ ./common/user-account.nix ]; + boot.kernelModules = [ "ecryptfs" ]; + security.pam.enableEcryptfs = true; + environment.systemPackages = with pkgs; [ keyutils ]; + }; + + testScript = '' + $machine->waitForUnit("default.target"); + + # Set alice up with a password and a home + $machine->succeed("(echo foobar; echo foobar) | passwd alice"); + $machine->succeed("chown -R alice.users ~alice"); + + # Migrate alice's home + my $out = $machine->succeed("echo foobar | ecryptfs-migrate-home -u alice"); + $machine->log("ecryptfs-migrate-home said: $out"); + + # Log alice in (ecryptfs passwhrase is wrapped during first login) + $machine->sleep(2); # urgh: wait for username prompt + $machine->sendChars("alice\n"); + $machine->sleep(1); + $machine->sendChars("foobar\n"); + $machine->sleep(2); + $machine->sendChars("logout\n"); + $machine->sleep(2); + + # Why do I need to do this?? + $machine->succeed("su alice -c ecryptfs-umount-private"); + $machine->sleep(1); + $machine->fail("mount | grep ecryptfs"); # check that encrypted home is not mounted + + # Show contents of the user keyring + my $out = $machine->succeed("su - alice -c 'keyctl list \@u'"); + $machine->log("keyctl unlink said: " . $out); + + # Log alice again + $machine->sendChars("alice\n"); + $machine->sleep(1); + $machine->sendChars("foobar\n"); + $machine->sleep(2); + + # Create some files in encrypted home + $machine->succeed("su alice -c 'touch ~alice/a'"); + $machine->succeed("su alice -c 'echo c > ~alice/b'"); + + # Logout + $machine->sendChars("logout\n"); + $machine->sleep(2); + + # Why do I need to do this?? + $machine->succeed("su alice -c ecryptfs-umount-private"); + $machine->sleep(1); + + # Check that the filesystem is not accessible + $machine->fail("mount | grep ecryptfs"); + $machine->succeed("su alice -c 'test \! -f ~alice/a'"); + $machine->succeed("su alice -c 'test \! -f ~alice/b'"); + + # Log alice once more + $machine->sendChars("alice\n"); + $machine->sleep(1); + $machine->sendChars("foobar\n"); + $machine->sleep(2); + + # Check that the files are there + $machine->sleep(1); + $machine->succeed("su alice -c 'test -f ~alice/a'"); + $machine->succeed("su alice -c 'test -f ~alice/b'"); + $machine->succeed(qq%test "\$(cat ~alice/b)" = "c"%); + + $machine->sendChars("logout\n"); + ''; +}) From d781bf94c1a0fadc75ea2ac2ed3534e831ec5462 Mon Sep 17 00:00:00 2001 From: obadz Date: Wed, 13 Jul 2016 01:59:47 +0200 Subject: [PATCH 023/123] ecryptfs: test bug from #16766 --- nixos/tests/ecryptfs.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/tests/ecryptfs.nix b/nixos/tests/ecryptfs.nix index f42ae1dac62..eceb25a0dea 100644 --- a/nixos/tests/ecryptfs.nix +++ b/nixos/tests/ecryptfs.nix @@ -73,6 +73,9 @@ import ./make-test.nix ({ pkgs, ... }: $machine->succeed("su alice -c 'test -f ~alice/b'"); $machine->succeed(qq%test "\$(cat ~alice/b)" = "c"%); + # Catch https://github.com/NixOS/nixpkgs/issues/16766 + $machine->succeed("su alice -c 'ls -lh ~alice/'"); + $machine->sendChars("logout\n"); ''; }) From d5e70a2adc9fe4f2fdba553edd2d80e57dacd898 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Wed, 13 Jul 2016 08:38:44 +0800 Subject: [PATCH 024/123] smbldaptools: 0.9.10 -> 0.9.11 --- pkgs/tools/networking/smbldaptools/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/networking/smbldaptools/default.nix b/pkgs/tools/networking/smbldaptools/default.nix index 9ca5c3be177..ef300d68314 100644 --- a/pkgs/tools/networking/smbldaptools/default.nix +++ b/pkgs/tools/networking/smbldaptools/default.nix @@ -1,13 +1,13 @@ {stdenv, fetchurl, perl, NetLDAP, makeWrapper, CryptSmbHash, DigestSHA1}: let - version = "0.9.10"; + version = "0.9.11"; in stdenv.mkDerivation { name = "smbldap-tools-${version}"; src = fetchurl { url = "http://download.gna.org/smbldap-tools/sources/${version}/smbldap-tools-${version}.tar.gz"; - sha256 = "19hsvslfs61pk9nhyqdkd68gc95z26kpkmsj10b8zvzlhqmwdvy4"; + sha256 = "1xcxmpz74r82vjp731axyac3cyksfiarz9jk5g5m2bzfdixkq9mz"; }; buildInputs = [ perl NetLDAP makeWrapper CryptSmbHash DigestSHA1 ]; @@ -27,7 +27,5 @@ stdenv.mkDerivation { homepage = http://gna.org/projects/smbldap-tools/; description = "SAMBA LDAP tools"; license = stdenv.lib.licenses.gpl2Plus; - # pod2man: unable to format smbldap-config.cmd - broken = true; }; } From 6423ded1bccc39298e8f4e60a89895f64a4def65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Wed, 13 Jul 2016 06:41:55 +0200 Subject: [PATCH 025/123] idea.idea-{community,ultimate}: 2016.1.3 -> 2016.2 --- pkgs/applications/editors/idea/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix index 6ef4edb5362..bc6f7fffeb3 100644 --- a/pkgs/applications/editors/idea/default.nix +++ b/pkgs/applications/editors/idea/default.nix @@ -189,13 +189,13 @@ in idea-community = buildIdea rec { name = "idea-community-${version}"; - version = "2016.1.3"; - build = "IC-145.1617.8"; + version = "2016.2"; + build = "IC-162.1121"; description = "Integrated Development Environment (IDE) by Jetbrains, community edition"; license = stdenv.lib.licenses.asl20; src = fetchurl { url = "https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz"; - sha256 = "0yd1jqz4arywyjsiakszrr48w2xqnik6vnl1a6l0ph2hssgkzkfi"; + sha256 = "164x4l0q31zpc1jh3js1xx9y6afrzsshmnkx1mwhmq8qmvzc4w32"; }; wmClass = "jetbrains-idea-ce"; }; @@ -228,13 +228,13 @@ in idea-ultimate = buildIdea rec { name = "idea-ultimate-${version}"; - version = "2016.1.3"; - build = "IU-145.1617.8"; + version = "2016.2"; + build = "IU-162.1121"; description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license"; license = stdenv.lib.licenses.unfree; src = fetchurl { url = "https://download.jetbrains.com/idea/ideaIU-${version}.tar.gz"; - sha256 = "1zzxwdnw2bbnl86kj7fjk5p8c99d0hdn1ki2alw5xm8wp4k0w7rv"; + sha256 = "10hiqh6ccmai2cnc5p72vqjcz9kzmmcpn0hy5v514h4mq6vs4zk4"; }; wmClass = "jetbrains-idea"; }; From 60e5b599d5298b4af92944a3f6260765cde6619e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Wed, 13 Jul 2016 06:45:33 +0200 Subject: [PATCH 026/123] storm: 0.8.2 -> 1.0.1 For this package to be useful you need to wrap it in a fhs-user-env and/or create a nixos module. Previous version had become completely broken/useless though. --- pkgs/servers/computing/storm/default.nix | 72 +++++++++++++++--------- 1 file changed, 44 insertions(+), 28 deletions(-) diff --git a/pkgs/servers/computing/storm/default.nix b/pkgs/servers/computing/storm/default.nix index cab91409654..cf57e653c49 100644 --- a/pkgs/servers/computing/storm/default.nix +++ b/pkgs/servers/computing/storm/default.nix @@ -1,49 +1,65 @@ -{ stdenv, fetchurl, zip, unzip, jzmq, jdk, lib, python, logsDir ? "", confFile ? "", extraLibraryPaths ? [], extraJars ? [] }: +{ stdenv, lib, fetchurl, zip, unzip, makeWrapper +, jzmq, jdk, python +, logsDir ? "", confFile ? "", extraLibraryPaths ? [], extraJars ? [] }: -stdenv.mkDerivation { - name = "storm-0.8.2"; +stdenv.mkDerivation rec { + name = "apache-storm-" + version; + version = "1.0.1"; src = fetchurl { - url = https://dl.dropbox.com/u/133901206/storm-0.8.2.zip; - sha256 = "8761aea0b54e5bab4a68b259bbe6b5b2f8226204488b5559eba57a0c458b2bbc"; + url = + "mirror://apache/storm/${name}/${name}.tar.gz"; + sha256 = "1gr00s0fhf8ci0faf3x5dinkiw9mlnc1x1vqki8cfszvij6w0x0m"; }; buildInputs = [ zip unzip jzmq ]; installPhase = '' - # Remove junk - rm -f lib/jzmq* - mkdir -p $out/bin - mv bin/storm $out/bin/ - rm -R bin conf logs + mkdir -p $out/share/${name} + mv public $out/docs + mv examples $out/share/${name}/. - # Fix shebang header for python scripts - sed -i -e "s|#!/usr/bin/.*python|#!${python}/bin/python|" $out/bin/storm; + rm -f lib/jzmq* || exit 1 + mv lib $out/. + mv external extlib* $out/lib/. + mv conf bin $out/. + mv log4j2 $out/conf/. + ''; - mkdir -p $out/conf - cp -av * $out - - cd $out; - ${if logsDir != "" then ''ln -s ${logsDir} logs'' else ""} - - # Extract, delete from zip; and optionally append to defaults.yaml - unzip storm-*.jar defaults.yaml; - zip -d storm-*.jar defaults.yaml; - echo 'java.library.path: "${jzmq}/lib:${lib.concatStringsSep ":" extraLibraryPaths}"' >> defaults.yaml; + fixupPhase = '' + # Fix python reference + sed -i \ + -e '19iPYTHON=${python}/bin/python' \ + -e 's|#!/usr/bin/.*python|#!${python}/bin/python|' \ + $out/bin/storm + sed -i \ + -e 's|#!/usr/bin/.*python|#!${python}/bin/python|' \ + -e "s|STORM_CONF_DIR = .*|STORM_CONF_DIR = os.getenv('STORM_CONF_DIR','$out/conf')|" \ + -e 's|STORM_LOG4J2_CONF_DIR =.*|STORM_LOG4J2_CONF_DIR = os.path.join(STORM_CONF_DIR, "log4j2")|' \ + $out/bin/storm.py + # Default jdk location + sed -i -e 's|#.*export JAVA_HOME=.*|export JAVA_HOME="${jdk.home}"|' \ + $out/conf/storm-env.sh + unzip $out/lib/storm-core-${version}.jar defaults.yaml; + zip -d $out/lib/storm-core-${version}.jar defaults.yaml; + sed -i \ + -e 's|java.library.path: .*|java.library.path: "${jzmq}/lib:${lib.concatStringsSep ":" extraLibraryPaths}"|' \ + -e 's|storm.log4j2.conf.dir: .*|storm.log4j2.conf.dir: "conf/log4j2"|' \ + defaults.yaml ${if confFile != "" then ''cat ${confFile} >> defaults.yaml'' else ""} - mv defaults.yaml conf; + mv defaults.yaml $out/conf; # Link to jzmq jar and extra jars - cd lib; + cd $out/lib; ln -s ${jzmq}/share/java/*.jar; ${lib.concatMapStrings (jar: "ln -s ${jar};\n") extraJars} ''; dontStrip = true; - meta = { - homepage = "http://storm-project.net"; + meta = with stdenv.lib; { + homepage = "http://storm.apache.org"; description = "Distributed realtime computation system"; - license = stdenv.lib.licenses.epl10; - maintainers = [ lib.maintainers.vizanto ]; + license = licenses.asl20; + maintainers = with maintainers; [ edwtjo vizanto ]; }; } From d97a1074261096e050d78f24118c4df3a6ac3af7 Mon Sep 17 00:00:00 2001 From: davidak Date: Wed, 13 Jul 2016 09:11:32 +0200 Subject: [PATCH 027/123] nixos-version: fix syntax error and add -h (#16906) * nixos-version: fix syntax error * nixos-version: add -h parameter --- nixos/modules/installer/tools/nixos-version.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/modules/installer/tools/nixos-version.sh b/nixos/modules/installer/tools/nixos-version.sh index e4e4f5c446c..77a1b458a34 100644 --- a/nixos/modules/installer/tools/nixos-version.sh +++ b/nixos/modules/installer/tools/nixos-version.sh @@ -1,9 +1,10 @@ #! @shell@ case "$1" in - --help) + -h|--help) exec man nixos-version exit 1 + ;; --hash|--revision) echo "@nixosRevision@" ;; From fad9a8841b67ee9e09dd352785e24d9b9d22e11c Mon Sep 17 00:00:00 2001 From: obadz Date: Wed, 13 Jul 2016 11:01:56 +0200 Subject: [PATCH 028/123] ecryptfs: fix kernel bug introduced in 4.4.14 Introduced by mainline commit 2f36db7 Patch is from http://www.spinics.net/lists/stable/msg137350.html Fixes #16766 --- .../linux/kernel/ecryptfs-fix-mmap-bug.patch | 20 +++++++++++++++++++ pkgs/os-specific/linux/kernel/patches.nix | 4 ++++ pkgs/top-level/all-packages.nix | 1 + 3 files changed, 25 insertions(+) create mode 100644 pkgs/os-specific/linux/kernel/ecryptfs-fix-mmap-bug.patch diff --git a/pkgs/os-specific/linux/kernel/ecryptfs-fix-mmap-bug.patch b/pkgs/os-specific/linux/kernel/ecryptfs-fix-mmap-bug.patch new file mode 100644 index 00000000000..7f94669a9f4 --- /dev/null +++ b/pkgs/os-specific/linux/kernel/ecryptfs-fix-mmap-bug.patch @@ -0,0 +1,20 @@ +Signed-off-by: Tyler Hicks +Tested-by: Tyler Hicks # 4.4.y, 3.18.y +Cc: # 4.5- +--- + fs/ecryptfs/kthread.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/fs/ecryptfs/kthread.c b/fs/ecryptfs/kthread.c +index e818f5a..b9faeab 100644 +--- a/fs/ecryptfs/kthread.c ++++ b/fs/ecryptfs/kthread.c +@@ -171,7 +171,7 @@ int ecryptfs_privileged_open(struct file **lower_file, + goto out; + } + have_file: +- if ((*lower_file)->f_op->mmap == NULL) { ++ if ((*lower_file)->f_op->mmap == NULL && !d_is_dir(lower_dentry)) { + fput(*lower_file); + *lower_file = NULL; + rc = -EMEDIUMTYPE; diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index 4f8d57acc17..7b2feaf84a8 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -148,4 +148,8 @@ rec { sha256 = "14rm1qr87p7a5prz8g5fwbpxzdp3ighj095x8rvhm8csm20wspyy"; }; }; + ecryptfs_fix_mmap_bug = + { name = "ecryptfs_fix_mmap_bug"; + patch = ./ecryptfs-fix-mmap-bug.patch; + }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4d40567f262..e982c9c4ee7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10954,6 +10954,7 @@ in [ kernelPatches.bridge_stp_helper kernelPatches.qat_common_Makefile kernelPatches.hiddev_CVE_2016_5829 + kernelPatches.ecryptfs_fix_mmap_bug ] ++ lib.optionals ((platform.kernelArch or null) == "mips") [ kernelPatches.mips_fpureg_emu From cf7d968f3a45c05a237a9e47f6a12fadadb70cfa Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 13 Jul 2016 10:23:35 +0200 Subject: [PATCH 029/123] perl-bignum: 0.42 -> 0.43 --- pkgs/top-level/perl-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index bfdf29cba5b..0ef7a4fe831 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -622,10 +622,10 @@ let self = _self // overrides; _self = with self; { }; bignum = buildPerlPackage rec { - name = "bignum-0.42"; + name = "bignum-0.43"; src = fetchurl { url = "mirror://cpan/authors/id/P/PJ/PJACKLAM/${name}.tar.gz"; - sha256 = "5bc9a16fe6d56584cde0f183828d81466f2cfc08ec1b6ef15d25a732080a9b52"; + sha256 = "0610cb569fe51ceaa98991549192b54a09b5ebd9bd03aee39e7234f7c222366d"; }; buildInputs = [ MathBigInt MathBigRat ]; meta = { From e196d30c1f71e1ad81e0430fb0674c67104ad0a9 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 13 Jul 2016 10:35:36 +0200 Subject: [PATCH 030/123] perl-CryptX: 0.037 -> 0.038 --- pkgs/top-level/perl-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 0ef7a4fe831..62c2477fbfd 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -2717,10 +2717,10 @@ let self = _self // overrides; _self = with self; { }; CryptX = buildPerlPackage rec { - name = "CryptX-0.037"; + name = "CryptX-0.038"; src = fetchurl { url = "mirror://cpan/authors/id/M/MI/MIK/${name}.tar.gz"; - sha256 = "ae09e6449efb2a9bc661ffeba613c7452367bdcb13c1ee346af0f72c9803404d"; + sha256 = "f98d4ee3bfd0a985077912501b32777c551f0782aa050b4dfbcb3d654e303eb8"; }; propagatedBuildInputs = [ JSONMaybeXS ]; meta = { From fdef298dd7c2426a3e764e39404e8669628bf167 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 13 Jul 2016 10:38:52 +0200 Subject: [PATCH 031/123] perl-File-Util: 4.161200 -> 4.161950 --- pkgs/top-level/perl-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 62c2477fbfd..be01e64fc26 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -5321,10 +5321,10 @@ let self = _self // overrides; _self = with self; { }; FileUtil = buildPerlPackage rec { - name = "File-Util-4.161200"; + name = "File-Util-4.161950"; src = fetchurl { url = "mirror://cpan/authors/id/T/TO/TOMMY/${name}.tar.gz"; - sha256 = "c63be030c15303796d387b290f1f6b59451fb64827e39afeb0e1d0adad72ab8e"; + sha256 = "88507b19da580d595b5c25fe6ba75bbd6096b4359e389ead067a216f766c20ee"; }; buildInputs = [ ModuleBuild TestNoWarnings ]; meta = { From 2e56d68164285aabe62c0864fad17d040c1e1dda Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 13 Jul 2016 12:31:21 +0200 Subject: [PATCH 032/123] perl-Getopt-Long-Descriptive: 0.099 -> 0.100 --- pkgs/top-level/perl-packages.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index be01e64fc26..7cb349b5e66 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -5512,18 +5512,18 @@ let self = _self // overrides; _self = with self; { }; GetoptLongDescriptive = buildPerlPackage rec { - name = "Getopt-Long-Descriptive-0.099"; + name = "Getopt-Long-Descriptive-0.100"; src = fetchurl { url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz"; - sha256 = "1sf5r3vy7880ynsn2aqmb5p6rzmhq5v072x33g8c7aqjpz81wkgw"; + sha256 = "1451e79310d1630de37690e3aba5c38ea5f01a486c5a43f0cd95bef2a02dffb6"; }; - buildInputs = [ TestFatal TestWarnings ]; - propagatedBuildInputs = [ ParamsValidate SubExporter SubExporterUtil ]; + buildInputs = [ CPANMetaCheck TestFatal TestWarnings ]; + propagatedBuildInputs = [ ParamsValidate SubExporter ]; meta = { homepage = https://github.com/rjbs/Getopt-Long-Descriptive; description = "Getopt::Long, but simpler and more powerful"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ rycee ]; + maintainers = [ maintainers.rycee ]; }; }; From 3ce829ca03964feaaa7558c3599ca84d07b5a1a3 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 13 Jul 2016 12:31:46 +0200 Subject: [PATCH 033/123] perl-MouseX-Getopt: 0.36 -> 0.37 --- pkgs/top-level/perl-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 7cb349b5e66..31607fe2bf2 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -8507,12 +8507,12 @@ let self = _self // overrides; _self = with self; { MouseXGetOpt = self.MouseXGetopt; MouseXGetopt = buildPerlModule rec { - name = "MouseX-Getopt-0.36"; + name = "MouseX-Getopt-0.37"; src = fetchurl { url = "mirror://cpan/authors/id/G/GF/GFUJI/${name}.tar.gz"; - sha256 = "172ab0609f1638c6d8800d2dff1bdaa044e305aaa2e9b1fbb8a9dc722a3bf430"; + sha256 = "a6221043e7be3217ce56d2a6425a413d9cd28e2f52053995a6ceb118e8e963bc"; }; - buildInputs = [ ModuleBuild Mouse MouseXConfigFromFile MouseXSimpleConfig TestException TestWarn ]; + buildInputs = [ ModuleBuildTiny Mouse MouseXConfigFromFile MouseXSimpleConfig TestException TestWarn ]; propagatedBuildInputs = [ GetoptLongDescriptive Mouse ]; meta = { homepage = https://github.com/gfx/mousex-getopt; From 927a984de6a32d5abc793b065b122a3d9c4f6343 Mon Sep 17 00:00:00 2001 From: obadz Date: Wed, 13 Jul 2016 12:49:18 +0200 Subject: [PATCH 034/123] kernel: make KEXEC_FILE & KEXEC_JUMP optional to fix i686 build cc @edolstra @dezgeg @domenkozar --- pkgs/os-specific/linux/kernel/common-config.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index cac102351b3..37e3859cd05 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -316,8 +316,8 @@ with stdenv.lib; JOYSTICK_IFORCE_USB? y # I-Force USB joysticks and wheels JOYSTICK_XPAD_FF? y # X-Box gamepad rumble support JOYSTICK_XPAD_LEDS? y # LED Support for Xbox360 controller 'BigX' LED - KEXEC_FILE y - KEXEC_JUMP y + KEXEC_FILE? y + KEXEC_JUMP? y LDM_PARTITION y # Windows Logical Disk Manager (Dynamic Disk) support LOGIRUMBLEPAD2_FF y # Logitech Rumblepad 2 force feedback LOGO n # not needed From 12effae5b6f644fa5aec1433f93a08ce68c7a82d Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Wed, 13 Jul 2016 18:43:17 +0800 Subject: [PATCH 035/123] mc: 4.8.16 -> 4.8.17 --- pkgs/tools/misc/mc/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/mc/default.nix b/pkgs/tools/misc/mc/default.nix index 9347b5f9bbe..e1072754b23 100644 --- a/pkgs/tools/misc/mc/default.nix +++ b/pkgs/tools/misc/mc/default.nix @@ -2,11 +2,12 @@ , libX11, libICE, perl, zip, unzip, gettext, slang}: stdenv.mkDerivation rec { - name = "mc-4.8.16"; + name = "mc-${version}"; + version = "4.8.17"; src = fetchurl { - url = http://www.midnight-commander.org/downloads/mc-4.8.16.tar.bz2; - sha256 = "1y5apnp6sc9sn13m6816hlrr0dis1z7wsnffldsx7xlkvyas8zn3"; + url = "http://www.midnight-commander.org/downloads/${name}.tar.bz2"; + sha256 = "0fvqzffppj0aja9hi0k1xdjg5m6s99immlla1y9yzn5fp8vwpl36"; }; buildInputs = [ pkgconfig perl glib gpm slang zip unzip file gettext libX11 libICE e2fsprogs ]; From c9b9619636e82ece9ce53696568d04cfb7365859 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 13 Jul 2016 13:16:19 +0200 Subject: [PATCH 036/123] nethogs: 0.8.1 -> 0.8.5 --- pkgs/tools/networking/nethogs/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/networking/nethogs/default.nix b/pkgs/tools/networking/nethogs/default.nix index dfa9b26a38e..eac95a32008 100644 --- a/pkgs/tools/networking/nethogs/default.nix +++ b/pkgs/tools/networking/nethogs/default.nix @@ -2,18 +2,20 @@ stdenv.mkDerivation rec { name = "nethogs-${version}"; - version = "0.8.1"; + version = "0.8.5"; src = fetchFromGitHub { owner = "raboof"; repo = "nethogs"; rev = "v${version}"; - sha256 = "1phn6i44ysvpl1f54bx4dspy51si8rc2wq6fywi163mi25j355d4"; + sha256 = "13plwblwbnyyi40jaqx471gwhln08wm7f0fxyvj1yh3d81k556yx"; }; buildInputs = [ ncurses libpcap ]; - installFlags = [ "prefix=$(out)" "sbin=$(prefix)/bin" ]; + makeFlags = [ "VERSION=${version}" ]; + + installFlags = [ "PREFIX=$(out)" "sbin=$(out)/bin" ]; meta = with stdenv.lib; { description = "A small 'net top' tool, grouping bandwidth by process"; @@ -27,7 +29,7 @@ stdenv.mkDerivation rec { bandwidth. ''; license = licenses.gpl2Plus; - homepage = http://nethogs.sourceforge.net/; + homepage = "https://github.com/raboof/nethogs#readme"; platforms = platforms.linux; maintainers = [ maintainers.rycee ]; }; From c6f5accb4376b2ab6cb36d0de1d23867510927d1 Mon Sep 17 00:00:00 2001 From: Tristan Helmich Date: Wed, 13 Jul 2016 13:57:40 +0200 Subject: [PATCH 037/123] emby: 3.0.5972 -> 3.0.5985 (#16893) --- pkgs/servers/emby/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/emby/default.nix b/pkgs/servers/emby/default.nix index e1325ec38c1..b9cc038479d 100644 --- a/pkgs/servers/emby/default.nix +++ b/pkgs/servers/emby/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "emby-${version}"; - version = "3.0.5972"; + version = "3.0.5985"; src = fetchurl { url = "https://github.com/MediaBrowser/Emby/archive/${version}.tar.gz"; - sha256 = "0dxm7m8q9w9cknp24gp30v7v8a9q8qph6gy2s1vfli38rwcnakix"; + sha256 = "16p8qr9pf6ww6xdfbsqamnpk70i4dadz30lnvliyxaaslggjbh4b"; }; propagatedBuildInputs = with pkgs; [ From 4f987e0e6019c715da82f59f994ee544131cea08 Mon Sep 17 00:00:00 2001 From: Ioannis Koutras Date: Wed, 13 Jul 2016 15:47:14 +0300 Subject: [PATCH 038/123] maintainers.nix: add joko --- lib/maintainers.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index ae06c524bde..3d83a0a3a1c 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -186,6 +186,7 @@ joamaki = "Jussi Maki "; joelmo = "Joel Moberg "; joelteon = "Joel Taylor "; + joko = "Ioannis Koutras "; jpbernardy = "Jean-Philippe Bernardy "; jraygauthier = "Raymond Gauthier "; juliendehos = "Julien Dehos "; From f76a8fbbac1af6d2a8fc13b8038e996d9c80fda8 Mon Sep 17 00:00:00 2001 From: obadz Date: Wed, 13 Jul 2016 14:57:13 +0200 Subject: [PATCH 039/123] ecryptfs: add test to release (#16910) Would have caught regression #16766 --- nixos/release.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/release.nix b/nixos/release.nix index c8547784bbc..1800122fa2e 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -220,6 +220,7 @@ in rec { tests.docker = hydraJob (import tests/docker.nix { system = "x86_64-linux"; }); tests.dockerRegistry = hydraJob (import tests/docker-registry.nix { system = "x86_64-linux"; }); tests.dnscrypt-proxy = callTest tests/dnscrypt-proxy.nix { system = "x86_64-linux"; }; + tests.ecryptfs = callTest tests/ecryptfs.nix {}; tests.etcd = hydraJob (import tests/etcd.nix { system = "x86_64-linux"; }); tests.ec2-nixops = hydraJob (import tests/ec2.nix { system = "x86_64-linux"; }).boot-ec2-nixops; tests.ec2-config = hydraJob (import tests/ec2.nix { system = "x86_64-linux"; }).boot-ec2-config; From 8c09317018102b1d19ac7dea959427c2b53339c4 Mon Sep 17 00:00:00 2001 From: mimadrid Date: Wed, 13 Jul 2016 15:43:49 +0200 Subject: [PATCH 040/123] git: 2.9.0 -> 2.9.1 --- .../version-management/git-and-tools/git/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/git/default.nix b/pkgs/applications/version-management/git-and-tools/git/default.nix index 5849f0ffd6f..fa40f1a49a2 100644 --- a/pkgs/applications/version-management/git-and-tools/git/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git/default.nix @@ -10,7 +10,7 @@ }: let - version = "2.9.0"; + version = "2.9.1"; svn = subversionClient.override { perlBindings = true; }; in @@ -19,7 +19,7 @@ stdenv.mkDerivation { src = fetchurl { url = "https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz"; - sha256 = "02dl8yvvl7m4zy39s0xmqr958ah7krvkv94lmx4vz3wl95wsj7zl"; + sha256 = "18l2jb4bkp9ljz6p2aviwzxqyzza9z3v6h1pnkz7kjf1fay61zp8"; }; patches = [ From d86191126383bce282407e27eb3f6fae28737724 Mon Sep 17 00:00:00 2001 From: Ioannis Koutras Date: Wed, 13 Jul 2016 15:48:56 +0300 Subject: [PATCH 041/123] ocproxy: init at 1.50 --- pkgs/tools/networking/ocproxy/default.nix | 32 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 pkgs/tools/networking/ocproxy/default.nix diff --git a/pkgs/tools/networking/ocproxy/default.nix b/pkgs/tools/networking/ocproxy/default.nix new file mode 100644 index 00000000000..65729d896aa --- /dev/null +++ b/pkgs/tools/networking/ocproxy/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchFromGitHub, autoconf, automake, libevent }: + +stdenv.mkDerivation rec { + version = "1.50"; + name = "ocproxy-${version}"; + + src = fetchFromGitHub { + owner = "cernekee"; + repo = "ocproxy"; + rev = "v${version}"; + sha256 = "136vlk2svgls5paf17xi1zahcahgcnmi2p55khh7zpqaar4lzw6s"; + }; + + buildInputs = [ autoconf automake libevent ]; + + preConfigure = '' + patchShebangs autogen.sh + ./autogen.sh + ''; + + meta = with stdenv.lib; { + description = "OpenConnect proxy"; + longdescription = '' + ocproxy is a user-level SOCKS and port forwarding proxy for OpenConnect + based on lwIP. + ''; + homepage = https://github.com/cernekee/ocproxy; + license = licenses.bsd3; + maintainers = [ maintainers.joko ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e982c9c4ee7..cedc20c020b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2780,6 +2780,8 @@ in obexd = callPackage ../tools/bluetooth/obexd { }; + ocproxy = callPackage ../tools/networking/ocproxy { }; + openfortivpn = callPackage ../tools/networking/openfortivpn { }; obexfs = callPackage ../tools/bluetooth/obexfs { }; From f3262a209b0ecfd69db0c78bfbf041d0467e1f02 Mon Sep 17 00:00:00 2001 From: Langston Barrett Date: Wed, 13 Jul 2016 18:32:13 +0200 Subject: [PATCH 042/123] terraform: 0.6.15 -> 0.6.16 --- pkgs/applications/networking/cluster/terraform/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix index 1ce86cac5c5..3d1834ce9b6 100644 --- a/pkgs/applications/networking/cluster/terraform/default.nix +++ b/pkgs/applications/networking/cluster/terraform/default.nix @@ -2,16 +2,16 @@ buildGoPackage rec { name = "terraform-${version}"; - version = "0.6.15"; + version = "0.6.16"; rev = "v${version}"; - + goPackagePath = "github.com/hashicorp/terraform"; src = fetchFromGitHub { inherit rev; owner = "hashicorp"; repo = "terraform"; - sha256 = "1mf98hagb0yp40g2mbar7aw7hmpq01clnil6y9khvykrb33vy0nb"; + sha256 = "1bg8hn4b31xphyxrc99bpnf7gmq20fxqx1k871nidx132brcsah2"; }; postInstall = '' From 54a15fb2e4272ce80dc30b153b77fe8089c8a7f3 Mon Sep 17 00:00:00 2001 From: Alexey Lebedeff Date: Wed, 13 Jul 2016 21:41:55 +0400 Subject: [PATCH 043/123] erlang: 18.3 -> 18.3.4 (#16244) Minor OTP releases (and their manpages) are not available for dowload at http://erlang.org/download But e.g.: - 18.3.1 contains an important fix for mnesia - 18.3.1-18.3.4 has a lot of SSL/TLS fixes So we have to fetch from GitHub and build everything ourselves. Also replace explicit path patching with upstream patches: - https://github.com/erlang/otp/pull/1023 - https://github.com/erlang/otp/pull/1103 - with this patch it's now possible to build erlang in sandboxed mode --- pkgs/development/interpreters/erlang/R18.nix | 55 ++++++++++++-------- 1 file changed, 33 insertions(+), 22 deletions(-) diff --git a/pkgs/development/interpreters/erlang/R18.nix b/pkgs/development/interpreters/erlang/R18.nix index 0929495ee1b..34896046e31 100644 --- a/pkgs/development/interpreters/erlang/R18.nix +++ b/pkgs/development/interpreters/erlang/R18.nix @@ -1,5 +1,5 @@ -{ stdenv, fetchurl, perl, gnum4, ncurses, openssl -, gnused, gawk, makeWrapper +{ stdenv, fetchurl, fetchFromGitHub, perl, gnum4, ncurses, openssl +, gnused, gawk, autoconf, libxslt, libxml2, makeWrapper , Carbon, Cocoa , odbcSupport ? false, unixODBC ? null , wxSupport ? true, mesa ? null, wxGTK ? null, xorg ? null, wxmac ? null @@ -20,15 +20,21 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "erlang-" + version + "${optionalString odbcSupport "-odbc"}" + "${optionalString javacSupport "-javac"}"; - version = "18.2"; + version = "18.3.4"; - src = fetchurl { - url = "http://www.erlang.org/download/otp_src_${version}.tar.gz"; - sha256 = "1l1zzf245w1abiylll8pjm0pppqwvvw4fihknqkcybkx62n2ipj3"; + # Minor OTP releases are not always released as tarbals at + # http://erlang.org/download/ So we have to download from + # github. And for the same reason we can't use a prebuilt manpages + # tarball and need to build manpages ourselves. + src = fetchFromGitHub { + owner = "erlang"; + repo = "otp"; + rev = "OTP-${version}"; + sha256 = "1f8nhybzsdmjvkmkzpjj3wj9jzx8mihlvi6gfp47fxkalansz39h"; }; buildInputs = - [ perl gnum4 ncurses openssl makeWrapper + [ perl gnum4 ncurses openssl autoconf libxslt libxml2 makeWrapper ] ++ optionals wxSupport (if stdenv.isDarwin then [ wxmac ] else [ mesa wxGTK xorg.libX11 ]) ++ optional odbcSupport unixODBC ++ optional javacSupport openjdk @@ -36,11 +42,23 @@ stdenv.mkDerivation rec { debugInfo = enableDebugInfo; - patchPhase = '' sed -i "s@/bin/rm@rm@" lib/odbc/configure erts/configure ''; + rmAndPwdPatch = fetchurl { + url = "https://github.com/erlang/otp/commit/98b8650d22e94a5ff839170833f691294f6276d0.patch"; + sha256 = "0cd5pkqrigiqz6cyma5irqwzn0bi17k371k9vlg8ir31h3zmqfip"; + }; + + envAndCpPatch = fetchurl { + url = "https://github.com/binarin/otp/commit/9f9841eb7327c9fe73e84e197fd2965a97b639cf.patch"; + sha256 = "10h5348p6g279b4q01i5jdqlljww5chcvrx5b4b0dv79pk0p0m9f"; + }; + + patches = [ + rmAndPwdPatch + envAndCpPatch + ]; preConfigure = '' - export HOME=$PWD/../ - sed -e s@/bin/pwd@pwd@g -i otp_build + ./otp_build autoconf ''; configureFlags= [ @@ -51,19 +69,12 @@ stdenv.mkDerivation rec { ++ optional javacSupport "--with-javac" ++ optional stdenv.isDarwin "--enable-darwin-64bit"; - postInstall = let - manpages = fetchurl { - url = "http://www.erlang.org/download/otp_doc_man_${version}.tar.gz"; - sha256 = "0abaqnw6hkr1h1zw6cdqwg2k7rfmj2b9sqqldnqf3qaj0shz759n"; - }; - in '' + # install-docs will generate and install manpages and html docs + # (PDFs are generated only when fop is available). + installTargets = "install install-docs"; + + postInstall = '' ln -s $out/lib/erlang/lib/erl_interface*/bin/erl_call $out/bin/erl_call - tar xf "${manpages}" -C "$out/lib/erlang" - for i in "$out"/lib/erlang/man/man[0-9]/*.[0-9]; do - prefix="''${i%/*}" - ensureDir "$out/share/man/''${prefix##*/}" - ln -s "$i" "$out/share/man/''${prefix##*/}/''${i##*/}erl" - done ''; # Some erlang bin/ scripts run sed and awk From 8c45378cdea615b9f364837a212e88f2a7594413 Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Sun, 10 Jul 2016 22:45:58 +0200 Subject: [PATCH 044/123] rustc: 1.9.0 -> 1.10.0, cargo: 0.10.0 -> 0.11.0 --- pkgs/development/compilers/rust/bootstrap.nix | 6 +- pkgs/development/compilers/rust/default.nix | 20 +++--- .../rust/patches/remove-uneeded-git.patch | 19 ------ .../rust/patches/use-rustc-1.9.0.patch | 25 ------- pkgs/development/compilers/rust/snapshot.nix | 65 ------------------- 5 files changed, 15 insertions(+), 120 deletions(-) delete mode 100644 pkgs/development/compilers/rust/patches/remove-uneeded-git.patch delete mode 100644 pkgs/development/compilers/rust/patches/use-rustc-1.9.0.patch delete mode 100644 pkgs/development/compilers/rust/snapshot.nix diff --git a/pkgs/development/compilers/rust/bootstrap.nix b/pkgs/development/compilers/rust/bootstrap.nix index 300f6929453..bfc82c4317d 100644 --- a/pkgs/development/compilers/rust/bootstrap.nix +++ b/pkgs/development/compilers/rust/bootstrap.nix @@ -50,7 +50,11 @@ rec { --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \ "$out/bin/rustc" - wrapProgram "$out/bin/rustc" + # Do NOT, I repeat, DO NOT use `wrapProgram` on $out/bin/rustc + # (or similar) here. It causes strange effects where rustc loads + # the wrong libraries in a bootstrap-build causing failures that + # are very hard to track dow. For details, see + # https://github.com/rust-lang/rust/issues/34722#issuecomment-232164943 ''; }; diff --git a/pkgs/development/compilers/rust/default.nix b/pkgs/development/compilers/rust/default.nix index d1e7460fa54..44b9471784c 100644 --- a/pkgs/development/compilers/rust/default.nix +++ b/pkgs/development/compilers/rust/default.nix @@ -3,30 +3,30 @@ let rustPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./bootstrap.nix {}) rustPlatform); - rustSnapshotPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./snapshot.nix {}) rustPlatform); in rec { rustc = callPackage ./rustc.nix { - shortVersion = "1.9.0"; + shortVersion = "1.10.0"; isRelease = true; forceBundledLLVM = false; configureFlags = [ "--release-channel=stable" ]; - srcRev = "e4e8b666850a763fdf1c3c2c142856ab51e32779"; - srcSha = "1pz4qx70mqv78fxm4w1mq7csk5pssq4qmr2vwwb5v8hyx03caff8"; - patches = [ ./patches/remove-uneeded-git.patch ] - ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch; + srcRev = "cfcb716cf0961a7e3a4eceac828d94805cf8140b"; + srcSha = "15i81ybh32xymmkyz3bkb5bdgi9hx8nb0sh00ac6qba6w8ljpii9"; + patches = [ + ./patches/disable-lockfile-check.patch + ] ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch; inherit targets; inherit targetPatches; inherit targetToolchains; - rustPlatform = rustSnapshotPlatform; + inherit rustPlatform; }; cargo = callPackage ./cargo.nix rec { - version = "0.10.0"; + version = "0.11.0"; srcRev = "refs/tags/${version}"; - srcSha = "06scvx5qh60mgvlpvri9ig4np2fsnicsfd452fi9w983dkxnz4l2"; - depsSha256 = "0js4697n7v93wnqnpvamhp446w58llj66za5hkd6wannmc0gsy3b"; + srcSha = "0ic2093bmwiw6vl2l9yhip87ni6dbz7dhrizy9wdx61229k16hc4"; + depsSha256 = "0690sgn6fcay7sazlmrbbn4jbhnvmznrpz5z3rvkbaifkjrg4w6d"; inherit rustc; # the rustc that will be wrapped by cargo inherit rustPlatform; # used to build cargo }; diff --git a/pkgs/development/compilers/rust/patches/remove-uneeded-git.patch b/pkgs/development/compilers/rust/patches/remove-uneeded-git.patch deleted file mode 100644 index 3c68d777f88..00000000000 --- a/pkgs/development/compilers/rust/patches/remove-uneeded-git.patch +++ /dev/null @@ -1,19 +0,0 @@ -diff --git a/src/etc/tidy.py b/src/etc/tidy.py -index 9f5f919..a607180 100644 ---- a/src/etc/tidy.py -+++ b/src/etc/tidy.py -@@ -66,13 +66,9 @@ def interesting_file(f): - return any(os.path.splitext(f)[1] == ext for ext in interesting_files) - - --# Be careful to support Python 2.4, 2.6, and 3.x here! --config_proc = subprocess.Popen(["git", "config", "core.autocrlf"], -- stdout=subprocess.PIPE) --result = config_proc.communicate()[0] - - true = "true".encode('utf8') --autocrlf = result.strip() == true if result is not None else False -+autocrlf = False - - current_name = "" - current_contents = "" diff --git a/pkgs/development/compilers/rust/patches/use-rustc-1.9.0.patch b/pkgs/development/compilers/rust/patches/use-rustc-1.9.0.patch deleted file mode 100644 index 150306744be..00000000000 --- a/pkgs/development/compilers/rust/patches/use-rustc-1.9.0.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 2710f3c8ae142abe1720b3476cd1ca60cee0c077 Mon Sep 17 00:00:00 2001 -From: David Craven -Date: Wed, 1 Jun 2016 00:12:35 +0200 -Subject: [PATCH] Patch stage0.txt to use rustc 1.9.0 - ---- - src/stage0.txt | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/stage0.txt b/src/stage0.txt -index 58b7f8f..3c84cab 100644 ---- a/src/stage0.txt -+++ b/src/stage0.txt -@@ -12,6 +12,6 @@ - # tarball for a stable release you'll likely see `1.x.0-$date` where `1.x.0` was - # released on `$date` - --rustc: beta-2016-04-13 --rustc_key: c2743eb4 -+rustc: 1.9.0-2016-05-24 -+rustc_key: d16b8f0e - cargo: nightly-2016-04-10 --- -2.8.3 - diff --git a/pkgs/development/compilers/rust/snapshot.nix b/pkgs/development/compilers/rust/snapshot.nix deleted file mode 100644 index 47f271b18e0..00000000000 --- a/pkgs/development/compilers/rust/snapshot.nix +++ /dev/null @@ -1,65 +0,0 @@ -/* NOTE: Rust 1.9.0 is the last version that uses snapshots - This file can be deleted after the 1.10.0 release and bootstrap.nix - can be used instead -*/ -{ stdenv, fetchurl, callPackage }: - -let - platform = if stdenv.system == "i686-linux" - then "linux-i386" - else if stdenv.system == "x86_64-linux" - then "linux-x86_64" - else if stdenv.system == "i686-darwin" - then "macos-i386" - else if stdenv.system == "x86_64-darwin" - then "macos-x86_64" - else abort "no snapshot to bootstrap for this platform (missing platform url suffix)"; - - /* Rust is bootstrapped from an earlier built version. We need - to fetch these earlier versions, which vary per platform. - The shapshot info you want can be found at - https://github.com/rust-lang/rust/blob/{$shortVersion}/src/snapshots.txt - with the set you want at the top. Make sure this is the latest snapshot - for the tagged release and not a snapshot in the current HEAD. - */ - - snapshotHashLinux686 = "0e0e4448b80d0a12b75485795244bb3857a0a7ef"; - snapshotHashLinux64 = "1273b6b6aed421c9e40c59f366d0df6092ec0397"; - snapshotHashDarwin686 = "9f9c0b4a2db09acbce54b792fb8839a735585565"; - snapshotHashDarwin64 = "52570f6fd915b0210a9be98cfc933148e16a75f8"; - snapshotDate = "2016-03-18"; - snapshotRev = "235d774"; - - snapshotHash = if stdenv.system == "i686-linux" - then snapshotHashLinux686 - else if stdenv.system == "x86_64-linux" - then snapshotHashLinux64 - else if stdenv.system == "i686-darwin" - then snapshotHashDarwin686 - else if stdenv.system == "x86_64-darwin" - then snapshotHashDarwin64 - else abort "no snapshot for platform ${stdenv.system}"; - - snapshotName = "rust-stage0-${snapshotDate}-${snapshotRev}-${platform}-${snapshotHash}.tar.bz2"; -in - -rec { - rustc = stdenv.mkDerivation { - name = "rustc-snapshot"; - src = fetchurl { - url = "http://static.rust-lang.org/stage0-snapshots/${snapshotName}"; - sha1 = snapshotHash; - }; - dontStrip = true; - installPhase = '' - mkdir -p "$out" - cp -r bin "$out/bin" - '' + stdenv.lib.optionalString stdenv.isLinux '' - patchelf --interpreter "${stdenv.glibc.out}/lib/${stdenv.cc.dynamicLinker}" \ - --set-rpath "${stdenv.cc.cc.lib}/lib/:${stdenv.cc.cc.lib}/lib64/" \ - "$out/bin/rustc" - ''; - }; - - cargo = null; -} From eec7eafe6f735f0f28cbf3e2cc873890385908d8 Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Wed, 13 Jul 2016 14:39:49 +0200 Subject: [PATCH 045/123] rustRegistry: 2016-06-26 -> 2016-07-13. --- pkgs/top-level/rust-packages.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/rust-packages.nix b/pkgs/top-level/rust-packages.nix index b4108957b8e..fb16530542a 100644 --- a/pkgs/top-level/rust-packages.nix +++ b/pkgs/top-level/rust-packages.nix @@ -7,15 +7,16 @@ { runCommand, fetchFromGitHub, git }: let - version = "2016-06-26"; - rev = "eb6b06424a5cdc5dd0f41f06cda69714b3a0577b"; + version = "2016-07-13"; + rev = "8c0d367a18349078cc33df1eed7394fbaa2d602e"; + sha256 = "1r59qvzrr1rmjbq8al0qwkc65nd3n512i4pgn9688192d68cjnl8"; src = fetchFromGitHub { inherit rev; + inherit sha256; owner = "rust-lang"; repo = "crates.io-index"; - sha256 = "0iyqyyd5070whfgsg74bqk0f6rk7d2r4spb2ih9jy594ds2qinv4"; }; in From c8885106c15c94b621baa2df95e44b4d2c4c6ee8 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 13 Jul 2016 13:30:04 -0500 Subject: [PATCH 046/123] kde5.plasma: 5.7.0 -> 5.7.1 - Update from Plasma 5.7.0 to 5.7.1. - Remove the version number from the directory storing the Plasma Nix expressions. It is not necessary to version the Nix expressions now that we keep only one version in Nixpkgs. - Fix a bug in generate-kde-plasma.sh which prevented it from finding its helper script. - Automatically redirect the output of generate-kde-plasma.sh to make the update script even easier to use. --- maintainers/scripts/generate-kde-plasma.sh | 4 +- pkgs/desktops/kde-5/plasma-5.7/srcs.nix | 325 ------------------ .../{plasma-5.7 => plasma}/bluedevil.nix | 0 .../{plasma-5.7 => plasma}/breeze-gtk.nix | 0 .../{plasma-5.7 => plasma}/breeze-qt4.nix | 0 .../{plasma-5.7 => plasma}/breeze-qt5.nix | 0 .../kde-5/{plasma-5.7 => plasma}/default.nix | 12 +- .../kactivitymanagerd.nix | 0 .../{plasma-5.7 => plasma}/kde-cli-tools.nix | 0 .../kde-gtk-config/0001-follow-symlinks.patch | 0 .../kde-gtk-config/default.nix | 0 .../{plasma-5.7 => plasma}/kdecoration.nix | 0 .../kdeplasma-addons.nix | 0 .../kde-5/{plasma-5.7 => plasma}/kgamma5.nix | 0 .../kde-5/{plasma-5.7 => plasma}/khotkeys.nix | 0 .../{plasma-5.7 => plasma}/kinfocenter.nix | 0 .../{plasma-5.7 => plasma}/kmenuedit.nix | 0 .../kde-5/{plasma-5.7 => plasma}/kscreen.nix | 0 .../{plasma-5.7 => plasma}/kscreenlocker.nix | 0 .../{plasma-5.7 => plasma}/ksshaskpass.nix | 0 .../{plasma-5.7 => plasma}/ksysguard.nix | 0 .../kwayland-integration.nix | 0 .../0001-qdiriterator-follow-symlinks.patch | 0 .../{plasma-5.7 => plasma}/kwin/default.nix | 0 .../kde-5/{plasma-5.7 => plasma}/kwrited.nix | 0 .../{plasma-5.7 => plasma}/libkscreen.nix | 0 .../0001-qdiriterator-follow-symlinks.patch | 0 .../libksysguard/default.nix | 0 .../kde-5/{plasma-5.7 => plasma}/milou.nix | 0 .../kde-5/{plasma-5.7 => plasma}/oxygen.nix | 0 .../0001-qt-5.5-QML-import-paths.patch | 0 .../plasma-desktop/0002-hwclock.patch | 0 .../plasma-desktop/0003-tzdir.patch | 0 .../plasma-desktop/default.nix | 0 .../plasma-integration.nix | 0 .../plasma-mediacenter.nix | 0 ...-mobile-broadband-provider-info-path.patch | 0 .../plasma-nm/default.nix | 0 .../{plasma-5.7 => plasma}/plasma-pa.nix | 0 .../plasma-workspace-wallpapers.nix | 0 .../plasma-workspace/default.nix | 0 .../plasma-workspace/qml-import-path.patch | 0 .../plasma-workspace/series | 0 .../polkit-kde-agent.nix | 0 .../{plasma-5.7 => plasma}/powerdevil.nix | 0 pkgs/desktops/kde-5/plasma/srcs.nix | 325 ++++++++++++++++++ .../startkde/default.nix | 0 .../startkde/startkde.sh | 0 .../{plasma-5.7 => plasma}/systemsettings.nix | 0 pkgs/top-level/all-packages.nix | 2 +- 50 files changed, 333 insertions(+), 335 deletions(-) delete mode 100644 pkgs/desktops/kde-5/plasma-5.7/srcs.nix rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/bluedevil.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/breeze-gtk.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/breeze-qt4.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/breeze-qt5.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/default.nix (89%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kactivitymanagerd.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kde-cli-tools.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kde-gtk-config/0001-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kde-gtk-config/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kdecoration.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kdeplasma-addons.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kgamma5.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/khotkeys.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kinfocenter.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kmenuedit.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kscreen.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kscreenlocker.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/ksshaskpass.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/ksysguard.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kwayland-integration.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kwin/0001-qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kwin/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kwrited.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/libkscreen.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/libksysguard/0001-qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/libksysguard/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/milou.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/oxygen.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-desktop/0001-qt-5.5-QML-import-paths.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-desktop/0002-hwclock.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-desktop/0003-tzdir.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-desktop/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-integration.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-mediacenter.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-nm/0001-mobile-broadband-provider-info-path.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-nm/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-pa.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-workspace-wallpapers.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-workspace/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-workspace/qml-import-path.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-workspace/series (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/polkit-kde-agent.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/powerdevil.nix (100%) create mode 100644 pkgs/desktops/kde-5/plasma/srcs.nix rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/startkde/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/startkde/startkde.sh (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/systemsettings.nix (100%) diff --git a/maintainers/scripts/generate-kde-plasma.sh b/maintainers/scripts/generate-kde-plasma.sh index ad916f3a25b..1d93a05512c 100755 --- a/maintainers/scripts/generate-kde-plasma.sh +++ b/maintainers/scripts/generate-kde-plasma.sh @@ -1,3 +1,5 @@ #!/bin/sh -./fetch-kde-qt.sh http://download.kde.org/stable/plasma/5.7.0/ -A '*.tar.xz' +./maintainers/scripts/fetch-kde-qt.sh \ + http://download.kde.org/stable/plasma/5.7.1/ -A '*.tar.xz' \ + >pkgs/desktops/kde-5/plasma/srcs.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/srcs.nix b/pkgs/desktops/kde-5/plasma-5.7/srcs.nix deleted file mode 100644 index 2f017f0d52b..00000000000 --- a/pkgs/desktops/kde-5/plasma-5.7/srcs.nix +++ /dev/null @@ -1,325 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - bluedevil = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/bluedevil-5.7.0.tar.xz"; - sha256 = "10f507hj31asg08kz5c5j5g2qlzmn57x68jrbgx80hdrji6jv6qn"; - name = "bluedevil-5.7.0.tar.xz"; - }; - }; - breeze = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/breeze-5.7.0.tar.xz"; - sha256 = "1sy400m8lkdqna926fxfq3nmcfsrd877b841an686qf9lb7iga2l"; - name = "breeze-5.7.0.tar.xz"; - }; - }; - breeze-grub = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/breeze-grub-5.7.0.tar.xz"; - sha256 = "0lgf13kbv1mcl57hwm0al87xslwvc7cgnj4k8f3026fjf78dqzr8"; - name = "breeze-grub-5.7.0.tar.xz"; - }; - }; - breeze-gtk = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/breeze-gtk-5.7.0.tar.xz"; - sha256 = "1h9hvhln5mwsi4fn7a7csf7gn6qlvx4d6bmxij2qsjm4i14izxhb"; - name = "breeze-gtk-5.7.0.tar.xz"; - }; - }; - breeze-plymouth = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/breeze-plymouth-5.7.0.tar.xz"; - sha256 = "1kq3ys1dvw2asgda6p9qbb2kkgskpvhjyp0xj4mgi5yaklz0bxgv"; - name = "breeze-plymouth-5.7.0.tar.xz"; - }; - }; - discover = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/discover-5.7.0.tar.xz"; - sha256 = "0j3339g6lrf44hg3xbvzh01pygcawrrf1c9vhijimrrd197qcqwg"; - name = "discover-5.7.0.tar.xz"; - }; - }; - kactivitymanagerd = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kactivitymanagerd-5.7.0.tar.xz"; - sha256 = "0j2rf4qlha7cdwgdnvxrhlc90j2m8qacyhii27zdjz9iwv48zyjq"; - name = "kactivitymanagerd-5.7.0.tar.xz"; - }; - }; - kde-cli-tools = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kde-cli-tools-5.7.0.tar.xz"; - sha256 = "05g4q6lf7mkm8ys39qhwqavy2g2xc17ahsfc037wkcpka47m6i3m"; - name = "kde-cli-tools-5.7.0.tar.xz"; - }; - }; - kdecoration = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kdecoration-5.7.0.tar.xz"; - sha256 = "1i43b572yd3s0bgfvj97r18p0yk01skwmwqqzripb80pygw9yzvc"; - name = "kdecoration-5.7.0.tar.xz"; - }; - }; - kde-gtk-config = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kde-gtk-config-5.7.0.tar.xz"; - sha256 = "01y4m3lyrfb0hngbmk6r3xpbak9r534vf1fqgf22956sdfrl5g2p"; - name = "kde-gtk-config-5.7.0.tar.xz"; - }; - }; - kdeplasma-addons = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kdeplasma-addons-5.7.0.tar.xz"; - sha256 = "0kv0c2yxikbpdkr82n16pw016gsvbpmhp8kgbzdjdaqinicw4p2b"; - name = "kdeplasma-addons-5.7.0.tar.xz"; - }; - }; - kgamma5 = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kgamma5-5.7.0.tar.xz"; - sha256 = "1scqi61agl8f1pmq29v32fs126x0ddw933q6yjswy1w2a0nn0i02"; - name = "kgamma5-5.7.0.tar.xz"; - }; - }; - khotkeys = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/khotkeys-5.7.0.tar.xz"; - sha256 = "0l27frmam6amgay42vb4pl98l81pb6xasnwd9ww3069sr9kiq0vi"; - name = "khotkeys-5.7.0.tar.xz"; - }; - }; - kinfocenter = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kinfocenter-5.7.0.tar.xz"; - sha256 = "1bs3yl916s4dpci481dk81193mmh7kd9vqq535q74w0hx8khcwlf"; - name = "kinfocenter-5.7.0.tar.xz"; - }; - }; - kmenuedit = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kmenuedit-5.7.0.tar.xz"; - sha256 = "0l7vibvy50v5hqpv6zb2j7c2nf0jbd88vwxhbv6rg150f3qy9awb"; - name = "kmenuedit-5.7.0.tar.xz"; - }; - }; - kscreen = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kscreen-5.7.0.tar.xz"; - sha256 = "1qiwz220lff8l48ysfasx0zysv9m1mm2dsk60j84rcr3v5jwim6h"; - name = "kscreen-5.7.0.tar.xz"; - }; - }; - kscreenlocker = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kscreenlocker-5.7.0.tar.xz"; - sha256 = "0yg4k1v31fkqh23myd4lfc59b04qydgiym2hahdz66vnvkkdcvdv"; - name = "kscreenlocker-5.7.0.tar.xz"; - }; - }; - ksshaskpass = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/ksshaskpass-5.7.0.tar.xz"; - sha256 = "0jv0i1gz36vv690x69isw6v856vjrbkjisy2gwd7z0l3986z54l0"; - name = "ksshaskpass-5.7.0.tar.xz"; - }; - }; - ksysguard = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/ksysguard-5.7.0.tar.xz"; - sha256 = "093ksjk6gy5j2hgfwlw6vspd22gqnb28aby9x8nvrx9idaxldlrj"; - name = "ksysguard-5.7.0.tar.xz"; - }; - }; - kwallet-pam = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kwallet-pam-5.7.0.tar.xz"; - sha256 = "0d1aba9mjb52cy8abm8ais5ypcfs3xny62dzjb7fd5ac1mdld0bz"; - name = "kwallet-pam-5.7.0.tar.xz"; - }; - }; - kwayland-integration = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kwayland-integration-5.7.0.tar.xz"; - sha256 = "1p2l98dd7dl1knshivk27qc2cfpvar26vci4lpxxwhg6psqdsnam"; - name = "kwayland-integration-5.7.0.tar.xz"; - }; - }; - kwin = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kwin-5.7.0.tar.xz"; - sha256 = "1mpdcr4dva447jigdfxvrhpd2mh67s83w3mzw28f9xb1r7zcfzpm"; - name = "kwin-5.7.0.tar.xz"; - }; - }; - kwrited = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kwrited-5.7.0.tar.xz"; - sha256 = "1wz56v9f3an65x17wj8bdg4f27a0j1mrsaz1v9gqks86cbmkkr5k"; - name = "kwrited-5.7.0.tar.xz"; - }; - }; - libkscreen = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/libkscreen-5.7.0.tar.xz"; - sha256 = "0g5xs8sajzkmn91n0y92mi71zjadpn35k2sxw8b12ilp9r5qzkqc"; - name = "libkscreen-5.7.0.tar.xz"; - }; - }; - libksysguard = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/libksysguard-5.7.0.tar.xz"; - sha256 = "1i3sl8wnfg1sl5psbfikw57w1d4bac6d61slkga60mp5z0jw4vss"; - name = "libksysguard-5.7.0.tar.xz"; - }; - }; - milou = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/milou-5.7.0.tar.xz"; - sha256 = "1i778zang4rk3kvd1z7aszrcsxa3l1k2d5xiv2zqf2z6hnranvbd"; - name = "milou-5.7.0.tar.xz"; - }; - }; - oxygen = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/oxygen-5.7.0.tar.xz"; - sha256 = "05vz4zixg9nfrydd2i7jjkv082vgmhxlv3v109vgkr652dh9kncf"; - name = "oxygen-5.7.0.tar.xz"; - }; - }; - plasma-desktop = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/plasma-desktop-5.7.0.tar.xz"; - sha256 = "0f8pi90g1msrfzd769d7c26lxbq07hf7va5d9mclq3kfhk2wm951"; - name = "plasma-desktop-5.7.0.tar.xz"; - }; - }; - plasma-integration = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/plasma-integration-5.7.0.tar.xz"; - sha256 = "0rhm0p6350jibqflh3f5b7df3rnm9k5p02sgna6p6gm5b2w145ii"; - name = "plasma-integration-5.7.0.tar.xz"; - }; - }; - plasma-mediacenter = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/plasma-mediacenter-5.7.0.tar.xz"; - sha256 = "1xva1lyyafik6kq7f1s9fddvb7n35paz0lmcyzqbaxs149xz6r96"; - name = "plasma-mediacenter-5.7.0.tar.xz"; - }; - }; - plasma-nm = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/plasma-nm-5.7.0.tar.xz"; - sha256 = "1aa8wv4jdmjjwmvn0pd80p0byyys498xi3i4fqy84r8spmb6xb9i"; - name = "plasma-nm-5.7.0.tar.xz"; - }; - }; - plasma-pa = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/plasma-pa-5.7.0.tar.xz"; - sha256 = "15hziwyyvz9mqcyqnjwc49a31v2d2ysa7gaydkb8dizgqfd4pcs8"; - name = "plasma-pa-5.7.0.tar.xz"; - }; - }; - plasma-sdk = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/plasma-sdk-5.7.0.tar.xz"; - sha256 = "0cbjbp9m0l3lik1j0x1czn4whd2h140954dlgqb87k4d55lxpxjh"; - name = "plasma-sdk-5.7.0.tar.xz"; - }; - }; - plasma-workspace = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/plasma-workspace-5.7.0.tar.xz"; - sha256 = "047pqpwi2zgyyp592wbxqxai5j5hvxbnw01s79q4i4wpsq10b2fa"; - name = "plasma-workspace-5.7.0.tar.xz"; - }; - }; - plasma-workspace-wallpapers = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/plasma-workspace-wallpapers-5.7.0.tar.xz"; - sha256 = "1f2nmnprj8pb6wl3svfmsgivl2565mabpmqyaywwfblhi5ycxj52"; - name = "plasma-workspace-wallpapers-5.7.0.tar.xz"; - }; - }; - polkit-kde-agent = { - version = "1-5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/polkit-kde-agent-1-5.7.0.tar.xz"; - sha256 = "0cxjgmhrb26ghqlrdj4kksw5g7b90pfhfsz4jia85szk2nssivl3"; - name = "polkit-kde-agent-1-5.7.0.tar.xz"; - }; - }; - powerdevil = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/powerdevil-5.7.0.tar.xz"; - sha256 = "1wc59vzzjbjr5brwnmlcnibh5hii61001hbc7hma3gngzr7j0b6m"; - name = "powerdevil-5.7.0.tar.xz"; - }; - }; - sddm-kcm = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/sddm-kcm-5.7.0.tar.xz"; - sha256 = "14jnyv7fs2bscmb0iw3pdxzmk4qyv0czzlpszi1qd1i7k0f2dngy"; - name = "sddm-kcm-5.7.0.tar.xz"; - }; - }; - systemsettings = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/systemsettings-5.7.0.tar.xz"; - sha256 = "13k325r7vy6l4a6lwrbhgm60bdmn91yjkld7zsd2xyxbw27vis3p"; - name = "systemsettings-5.7.0.tar.xz"; - }; - }; - user-manager = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/user-manager-5.7.0.tar.xz"; - sha256 = "16h7ifwa8dpn0yrg8cisi570dm2wigmb50pgxh9h8smfzgc0vg7k"; - name = "user-manager-5.7.0.tar.xz"; - }; - }; -} diff --git a/pkgs/desktops/kde-5/plasma-5.7/bluedevil.nix b/pkgs/desktops/kde-5/plasma/bluedevil.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/bluedevil.nix rename to pkgs/desktops/kde-5/plasma/bluedevil.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/breeze-gtk.nix b/pkgs/desktops/kde-5/plasma/breeze-gtk.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/breeze-gtk.nix rename to pkgs/desktops/kde-5/plasma/breeze-gtk.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/breeze-qt4.nix b/pkgs/desktops/kde-5/plasma/breeze-qt4.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/breeze-qt4.nix rename to pkgs/desktops/kde-5/plasma/breeze-qt4.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/breeze-qt5.nix b/pkgs/desktops/kde-5/plasma/breeze-qt5.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/breeze-qt5.nix rename to pkgs/desktops/kde-5/plasma/breeze-qt5.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/default.nix b/pkgs/desktops/kde-5/plasma/default.nix similarity index 89% rename from pkgs/desktops/kde-5/plasma-5.7/default.nix rename to pkgs/desktops/kde-5/plasma/default.nix index d0b6ef1f6c9..f6bbd5c3f51 100644 --- a/pkgs/desktops/kde-5/plasma-5.7/default.nix +++ b/pkgs/desktops/kde-5/plasma/default.nix @@ -2,14 +2,10 @@ # Updates -Before a major version update, make a copy of this directory. (We like to -keep the old version around for a short time after major updates.) - -1. Update the URL in `maintainers/scripts/generate-kde-plasma.sh`. -2. From the top of the Nixpkgs tree, run - `./maintainers/scripts/generate-kde-plasma.sh > pkgs/desktops/kde-5/plasma-$VERSION/srcs.nix'. -3. Check that the new packages build correctly. -4. Commit the changes and open a pull request. +1. Update the URL in `maintainers/scripts/generate-kde-plasma.sh` and run + that script from the top of the Nixpkgs tree. +2. Check that the new packages build correctly. +3. Commit the changes and open a pull request. */ diff --git a/pkgs/desktops/kde-5/plasma-5.7/kactivitymanagerd.nix b/pkgs/desktops/kde-5/plasma/kactivitymanagerd.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kactivitymanagerd.nix rename to pkgs/desktops/kde-5/plasma/kactivitymanagerd.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kde-cli-tools.nix b/pkgs/desktops/kde-5/plasma/kde-cli-tools.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kde-cli-tools.nix rename to pkgs/desktops/kde-5/plasma/kde-cli-tools.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kde-gtk-config/0001-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma/kde-gtk-config/0001-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kde-gtk-config/0001-follow-symlinks.patch rename to pkgs/desktops/kde-5/plasma/kde-gtk-config/0001-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/plasma-5.7/kde-gtk-config/default.nix b/pkgs/desktops/kde-5/plasma/kde-gtk-config/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kde-gtk-config/default.nix rename to pkgs/desktops/kde-5/plasma/kde-gtk-config/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kdecoration.nix b/pkgs/desktops/kde-5/plasma/kdecoration.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kdecoration.nix rename to pkgs/desktops/kde-5/plasma/kdecoration.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kdeplasma-addons.nix b/pkgs/desktops/kde-5/plasma/kdeplasma-addons.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kdeplasma-addons.nix rename to pkgs/desktops/kde-5/plasma/kdeplasma-addons.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kgamma5.nix b/pkgs/desktops/kde-5/plasma/kgamma5.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kgamma5.nix rename to pkgs/desktops/kde-5/plasma/kgamma5.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/khotkeys.nix b/pkgs/desktops/kde-5/plasma/khotkeys.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/khotkeys.nix rename to pkgs/desktops/kde-5/plasma/khotkeys.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kinfocenter.nix b/pkgs/desktops/kde-5/plasma/kinfocenter.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kinfocenter.nix rename to pkgs/desktops/kde-5/plasma/kinfocenter.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kmenuedit.nix b/pkgs/desktops/kde-5/plasma/kmenuedit.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kmenuedit.nix rename to pkgs/desktops/kde-5/plasma/kmenuedit.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kscreen.nix b/pkgs/desktops/kde-5/plasma/kscreen.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kscreen.nix rename to pkgs/desktops/kde-5/plasma/kscreen.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kscreenlocker.nix b/pkgs/desktops/kde-5/plasma/kscreenlocker.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kscreenlocker.nix rename to pkgs/desktops/kde-5/plasma/kscreenlocker.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/ksshaskpass.nix b/pkgs/desktops/kde-5/plasma/ksshaskpass.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/ksshaskpass.nix rename to pkgs/desktops/kde-5/plasma/ksshaskpass.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/ksysguard.nix b/pkgs/desktops/kde-5/plasma/ksysguard.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/ksysguard.nix rename to pkgs/desktops/kde-5/plasma/ksysguard.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kwayland-integration.nix b/pkgs/desktops/kde-5/plasma/kwayland-integration.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kwayland-integration.nix rename to pkgs/desktops/kde-5/plasma/kwayland-integration.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kwin/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma/kwin/0001-qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kwin/0001-qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/plasma/kwin/0001-qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/plasma-5.7/kwin/default.nix b/pkgs/desktops/kde-5/plasma/kwin/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kwin/default.nix rename to pkgs/desktops/kde-5/plasma/kwin/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kwrited.nix b/pkgs/desktops/kde-5/plasma/kwrited.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kwrited.nix rename to pkgs/desktops/kde-5/plasma/kwrited.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/libkscreen.nix b/pkgs/desktops/kde-5/plasma/libkscreen.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/libkscreen.nix rename to pkgs/desktops/kde-5/plasma/libkscreen.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/libksysguard/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma/libksysguard/0001-qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/libksysguard/0001-qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/plasma/libksysguard/0001-qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/plasma-5.7/libksysguard/default.nix b/pkgs/desktops/kde-5/plasma/libksysguard/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/libksysguard/default.nix rename to pkgs/desktops/kde-5/plasma/libksysguard/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/milou.nix b/pkgs/desktops/kde-5/plasma/milou.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/milou.nix rename to pkgs/desktops/kde-5/plasma/milou.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/oxygen.nix b/pkgs/desktops/kde-5/plasma/oxygen.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/oxygen.nix rename to pkgs/desktops/kde-5/plasma/oxygen.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0001-qt-5.5-QML-import-paths.patch b/pkgs/desktops/kde-5/plasma/plasma-desktop/0001-qt-5.5-QML-import-paths.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0001-qt-5.5-QML-import-paths.patch rename to pkgs/desktops/kde-5/plasma/plasma-desktop/0001-qt-5.5-QML-import-paths.patch diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0002-hwclock.patch b/pkgs/desktops/kde-5/plasma/plasma-desktop/0002-hwclock.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0002-hwclock.patch rename to pkgs/desktops/kde-5/plasma/plasma-desktop/0002-hwclock.patch diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0003-tzdir.patch b/pkgs/desktops/kde-5/plasma/plasma-desktop/0003-tzdir.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0003-tzdir.patch rename to pkgs/desktops/kde-5/plasma/plasma-desktop/0003-tzdir.patch diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/default.nix b/pkgs/desktops/kde-5/plasma/plasma-desktop/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/default.nix rename to pkgs/desktops/kde-5/plasma/plasma-desktop/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-integration.nix b/pkgs/desktops/kde-5/plasma/plasma-integration.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-integration.nix rename to pkgs/desktops/kde-5/plasma/plasma-integration.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-mediacenter.nix b/pkgs/desktops/kde-5/plasma/plasma-mediacenter.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-mediacenter.nix rename to pkgs/desktops/kde-5/plasma/plasma-mediacenter.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-nm/0001-mobile-broadband-provider-info-path.patch b/pkgs/desktops/kde-5/plasma/plasma-nm/0001-mobile-broadband-provider-info-path.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-nm/0001-mobile-broadband-provider-info-path.patch rename to pkgs/desktops/kde-5/plasma/plasma-nm/0001-mobile-broadband-provider-info-path.patch diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-nm/default.nix b/pkgs/desktops/kde-5/plasma/plasma-nm/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-nm/default.nix rename to pkgs/desktops/kde-5/plasma/plasma-nm/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-pa.nix b/pkgs/desktops/kde-5/plasma/plasma-pa.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-pa.nix rename to pkgs/desktops/kde-5/plasma/plasma-pa.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-workspace-wallpapers.nix b/pkgs/desktops/kde-5/plasma/plasma-workspace-wallpapers.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-workspace-wallpapers.nix rename to pkgs/desktops/kde-5/plasma/plasma-workspace-wallpapers.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/default.nix b/pkgs/desktops/kde-5/plasma/plasma-workspace/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/default.nix rename to pkgs/desktops/kde-5/plasma/plasma-workspace/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/qml-import-path.patch b/pkgs/desktops/kde-5/plasma/plasma-workspace/qml-import-path.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/qml-import-path.patch rename to pkgs/desktops/kde-5/plasma/plasma-workspace/qml-import-path.patch diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/series b/pkgs/desktops/kde-5/plasma/plasma-workspace/series similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/series rename to pkgs/desktops/kde-5/plasma/plasma-workspace/series diff --git a/pkgs/desktops/kde-5/plasma-5.7/polkit-kde-agent.nix b/pkgs/desktops/kde-5/plasma/polkit-kde-agent.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/polkit-kde-agent.nix rename to pkgs/desktops/kde-5/plasma/polkit-kde-agent.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/powerdevil.nix b/pkgs/desktops/kde-5/plasma/powerdevil.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/powerdevil.nix rename to pkgs/desktops/kde-5/plasma/powerdevil.nix diff --git a/pkgs/desktops/kde-5/plasma/srcs.nix b/pkgs/desktops/kde-5/plasma/srcs.nix new file mode 100644 index 00000000000..2dbfb6dd04a --- /dev/null +++ b/pkgs/desktops/kde-5/plasma/srcs.nix @@ -0,0 +1,325 @@ +# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh +{ fetchurl, mirror }: + +{ + bluedevil = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/bluedevil-5.7.1.tar.xz"; + sha256 = "1sz84r27bc4qavb22haqswr1qjv9m47b8j3knvlpzdln4wpxnb81"; + name = "bluedevil-5.7.1.tar.xz"; + }; + }; + breeze = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/breeze-5.7.1.tar.xz"; + sha256 = "1sparlwykzr6mjqzv3ghzl59j0xi3yxf0m93sx7d3js92k77rqpk"; + name = "breeze-5.7.1.tar.xz"; + }; + }; + breeze-grub = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/breeze-grub-5.7.1.tar.xz"; + sha256 = "0ahpsq429f8cdk2w91h9ji9fiqc7g8m9zlg447pz7r6lxnj9aw3x"; + name = "breeze-grub-5.7.1.tar.xz"; + }; + }; + breeze-gtk = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/breeze-gtk-5.7.1.tar.xz"; + sha256 = "1xcznd9m6kxrv8c4j66m4qqgq02h32714dkjwr754k9qfiava2qg"; + name = "breeze-gtk-5.7.1.tar.xz"; + }; + }; + breeze-plymouth = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/breeze-plymouth-5.7.1.tar.xz"; + sha256 = "16wx7k18yxf2jhxl2wwxy1dzdrrlfr9qkxbw72m5c21spx734wwb"; + name = "breeze-plymouth-5.7.1.tar.xz"; + }; + }; + discover = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/discover-5.7.1.tar.xz"; + sha256 = "1r4g4ajyp6ap1nq2n9ngvsgzifypivrkkzfk14c06mmc4fbqblpd"; + name = "discover-5.7.1.tar.xz"; + }; + }; + kactivitymanagerd = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kactivitymanagerd-5.7.1.tar.xz"; + sha256 = "1mc4dxxkvjyrq4khlg1gjhxdhn87xsghwlznp4gnfx4cjgvxi8bq"; + name = "kactivitymanagerd-5.7.1.tar.xz"; + }; + }; + kde-cli-tools = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kde-cli-tools-5.7.1.tar.xz"; + sha256 = "0q3j6kd7yfrp10pbld5pdis8w234442va3h460q9j3bp7n7xp8h9"; + name = "kde-cli-tools-5.7.1.tar.xz"; + }; + }; + kdecoration = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kdecoration-5.7.1.tar.xz"; + sha256 = "181vay4alcckv93cralbj980c4zxbmca710dh9qrmy4nfk2y0pq7"; + name = "kdecoration-5.7.1.tar.xz"; + }; + }; + kde-gtk-config = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kde-gtk-config-5.7.1.tar.xz"; + sha256 = "18xm51j1604gg9sf9cmchqzgfrchwf2may4qhl2glns3c7xnps94"; + name = "kde-gtk-config-5.7.1.tar.xz"; + }; + }; + kdeplasma-addons = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kdeplasma-addons-5.7.1.tar.xz"; + sha256 = "13mg01ll9np8av55ilns1dc0k3rv5cix901gp459dl9r05hzhxgp"; + name = "kdeplasma-addons-5.7.1.tar.xz"; + }; + }; + kgamma5 = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kgamma5-5.7.1.tar.xz"; + sha256 = "1myxjj99jmp2n58f4jbarphr12jh9rqpjmvk2dpcijb94sxaimsl"; + name = "kgamma5-5.7.1.tar.xz"; + }; + }; + khotkeys = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/khotkeys-5.7.1.tar.xz"; + sha256 = "0djnfax9ba1zm3lkxm2hfa4ai399g1p1n0zfpchjfif8639pf6fk"; + name = "khotkeys-5.7.1.tar.xz"; + }; + }; + kinfocenter = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kinfocenter-5.7.1.tar.xz"; + sha256 = "0ynm1lb5f2ggc470k805acxrgxbjw00b780psg60m64bh12jn5ws"; + name = "kinfocenter-5.7.1.tar.xz"; + }; + }; + kmenuedit = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kmenuedit-5.7.1.tar.xz"; + sha256 = "19188hwidv6vak1qas60jzc7bd6fx1slaqkiwljyx8r6w7l1lx4h"; + name = "kmenuedit-5.7.1.tar.xz"; + }; + }; + kscreen = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kscreen-5.7.1.tar.xz"; + sha256 = "0f2zniavlh18ipkn3k6kpzd5nqhlj0pg723dqb3p5zdmxfwddqal"; + name = "kscreen-5.7.1.tar.xz"; + }; + }; + kscreenlocker = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kscreenlocker-5.7.1.tar.xz"; + sha256 = "0dpx1cwvjzsnf9aryavqajlw10iqfmg3vjry50wkg03nb8z1rd49"; + name = "kscreenlocker-5.7.1.tar.xz"; + }; + }; + ksshaskpass = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/ksshaskpass-5.7.1.tar.xz"; + sha256 = "0blmwnm512lld8r3gj2fi7z0cj2nhcngn6xw3568p54ijb5da6c2"; + name = "ksshaskpass-5.7.1.tar.xz"; + }; + }; + ksysguard = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/ksysguard-5.7.1.tar.xz"; + sha256 = "14b9wspfls4q3zl1rxpr6h5kxx9q6dv10x8lbzmxml1fdkid3i5j"; + name = "ksysguard-5.7.1.tar.xz"; + }; + }; + kwallet-pam = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kwallet-pam-5.7.1.tar.xz"; + sha256 = "04jxi4a75km9c5gy30aaikqzsd2z2algvh7w6phfqaqq66h5qx8d"; + name = "kwallet-pam-5.7.1.tar.xz"; + }; + }; + kwayland-integration = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kwayland-integration-5.7.1.tar.xz"; + sha256 = "0ix30304ggh12xgqnnb9zrniqhklg3a8rkjnp3fad7sr3wa9346s"; + name = "kwayland-integration-5.7.1.tar.xz"; + }; + }; + kwin = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kwin-5.7.1.tar.xz"; + sha256 = "0mkvfbsv1ivzs02fphm28km55cn258w6sram9zbqldklk2js7is0"; + name = "kwin-5.7.1.tar.xz"; + }; + }; + kwrited = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kwrited-5.7.1.tar.xz"; + sha256 = "0mmb4hmwpcmxc03nzqhybwxk5nlyqamdswmr0vf8jcbvcqdmp473"; + name = "kwrited-5.7.1.tar.xz"; + }; + }; + libkscreen = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/libkscreen-5.7.1.tar.xz"; + sha256 = "1my8k7r7i2qh59g46l79xdyci1km3ykxms1314vwzqf7fyadwjnp"; + name = "libkscreen-5.7.1.tar.xz"; + }; + }; + libksysguard = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/libksysguard-5.7.1.tar.xz"; + sha256 = "0249cxgfy6yb9dcc9z2ckxwy7khkbzk0922479v900avaf87l4hj"; + name = "libksysguard-5.7.1.tar.xz"; + }; + }; + milou = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/milou-5.7.1.tar.xz"; + sha256 = "0fcrf8q0sxsgjbi9j2h9qcl4g40mvia1zkb98crzir5qb1z6ji1f"; + name = "milou-5.7.1.tar.xz"; + }; + }; + oxygen = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/oxygen-5.7.1.tar.xz"; + sha256 = "1pjygznb3fjyyvm84dxxj6smm6hpi5mr0c5077rc1xm2p20g7xn0"; + name = "oxygen-5.7.1.tar.xz"; + }; + }; + plasma-desktop = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/plasma-desktop-5.7.1.tar.xz"; + sha256 = "1civd76q2lkas8x5pzm57dfjyplmgb91w34avn75lcdkl2p0zq44"; + name = "plasma-desktop-5.7.1.tar.xz"; + }; + }; + plasma-integration = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/plasma-integration-5.7.1.tar.xz"; + sha256 = "12cjays5y3zr4za7j49p8yrzk6fxmsgvw4n8i8aida390lbnw5c6"; + name = "plasma-integration-5.7.1.tar.xz"; + }; + }; + plasma-mediacenter = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/plasma-mediacenter-5.7.1.tar.xz"; + sha256 = "135c7vgps9nsna4x5b28p8p2lir7wx2ad6p5m4sg7irf2wr6mivd"; + name = "plasma-mediacenter-5.7.1.tar.xz"; + }; + }; + plasma-nm = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/plasma-nm-5.7.1.tar.xz"; + sha256 = "0siq0na8cqqp0lqp963miwimsr7w9papj6cpf9k0frw40arqk26h"; + name = "plasma-nm-5.7.1.tar.xz"; + }; + }; + plasma-pa = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/plasma-pa-5.7.1.tar.xz"; + sha256 = "0g4rgsf39imknxbccl77d7j7404gfyv0nh6r0dmli19alhhiczay"; + name = "plasma-pa-5.7.1.tar.xz"; + }; + }; + plasma-sdk = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/plasma-sdk-5.7.1.tar.xz"; + sha256 = "1mn54zwq9bcrazv6zh832xyagrd4k1xjdwhdqxqbvq1d139v8shj"; + name = "plasma-sdk-5.7.1.tar.xz"; + }; + }; + plasma-workspace = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/plasma-workspace-5.7.1.tar.xz"; + sha256 = "0x4ghm385kkj2ax91vy10p4f481c6ikpk0azmhnk2d685r7x03yn"; + name = "plasma-workspace-5.7.1.tar.xz"; + }; + }; + plasma-workspace-wallpapers = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/plasma-workspace-wallpapers-5.7.1.tar.xz"; + sha256 = "0nl3bjb57djzgvx81knrjkbdix9y3j5ggxpd1a6lj80nixicg8h7"; + name = "plasma-workspace-wallpapers-5.7.1.tar.xz"; + }; + }; + polkit-kde-agent = { + version = "1-5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/polkit-kde-agent-1-5.7.1.tar.xz"; + sha256 = "1pcmdplxq0fsa3bdxyl73vpndvhlmsmjbqfc35aa1ds2wkj7ql2q"; + name = "polkit-kde-agent-1-5.7.1.tar.xz"; + }; + }; + powerdevil = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/powerdevil-5.7.1.tar.xz"; + sha256 = "0vdrpfgdw2c2gp6cwmrwyrwgfgxfslypa5ls79cf9wqgkrlh3phy"; + name = "powerdevil-5.7.1.tar.xz"; + }; + }; + sddm-kcm = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/sddm-kcm-5.7.1.tar.xz"; + sha256 = "0bnfy0ndg5040za73sj41ajskwx7bvfa4x92wrfzv27gda3c7fdg"; + name = "sddm-kcm-5.7.1.tar.xz"; + }; + }; + systemsettings = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/systemsettings-5.7.1.tar.xz"; + sha256 = "0arcvhqvcsm59l3fm6brqqcv1084qm8wawj9dj6w5wb194ys41hw"; + name = "systemsettings-5.7.1.tar.xz"; + }; + }; + user-manager = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/user-manager-5.7.1.tar.xz"; + sha256 = "1jzwwzixwbb6f92zi09i3jfs4dqsg3kcjis60w1bh2pkm96gq35y"; + name = "user-manager-5.7.1.tar.xz"; + }; + }; +} diff --git a/pkgs/desktops/kde-5/plasma-5.7/startkde/default.nix b/pkgs/desktops/kde-5/plasma/startkde/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/startkde/default.nix rename to pkgs/desktops/kde-5/plasma/startkde/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/startkde/startkde.sh b/pkgs/desktops/kde-5/plasma/startkde/startkde.sh similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/startkde/startkde.sh rename to pkgs/desktops/kde-5/plasma/startkde/startkde.sh diff --git a/pkgs/desktops/kde-5/plasma-5.7/systemsettings.nix b/pkgs/desktops/kde-5/plasma/systemsettings.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/systemsettings.nix rename to pkgs/desktops/kde-5/plasma/systemsettings.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cedc20c020b..6f06b05c156 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16181,7 +16181,7 @@ in kde5 = let frameworks = import ../desktops/kde-5/frameworks-5.24 { inherit pkgs; }; - plasma = import ../desktops/kde-5/plasma-5.7 { inherit pkgs; }; + plasma = import ../desktops/kde-5/plasma { inherit pkgs; }; applications = import ../desktops/kde-5/applications-16.04 { inherit pkgs; }; merged = self: { plasma = plasma self; From 422ee37e5215ac8b8183075269a2a211739b6130 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 13 Jul 2016 13:48:06 -0500 Subject: [PATCH 047/123] kde5.applications: 16.04.2 -> 16.04.3 - Update from Applications 16.04.2 to 16.04.3. - Remove the version number from the directory storing the Applications Nix expressions. It is not necessary to version the Nix expressions now that we keep only one version in Nixpkgs. - Fix a bug in generate-kde-applications.sh which prevented it from finding its helper script. - Automatically redirect the output of generate-kde-applications.sh to make the update script even easier to use. --- .../scripts/generate-kde-applications.sh | 4 +- .../kde-5/applications-16.04/srcs.nix | 2093 ----------------- .../ark/0001-fix-start-from-plasma.patch | 0 .../ark/default.nix | 0 .../baloo-widgets.nix | 0 .../default.nix | 12 +- .../dolphin-plugins.nix | 0 .../dolphin.nix | 0 .../ffmpegthumbs.nix | 0 .../filelight.nix | 0 .../gpgmepp.nix | 0 .../gwenview.nix | 0 .../kate.nix | 0 .../kcalc.nix | 0 .../kcolorchooser.nix | 0 .../kde-app.nix | 0 .../kde-locale-4.nix | 0 .../kde-locale-5.nix | 0 .../kdegraphics-thumbnailers.nix | 0 .../0001-old-kde4-cmake-policies.patch | 0 .../kdelibs/0002-polkit-install-path.patch | 0 .../kdelibs/0003-remove_xdg_impurities.patch | 0 .../kdelibs/default.nix | 0 .../kdelibs/setup-hook.sh | 0 .../kdenetwork-filesharing.nix | 0 .../kgpg.nix | 0 .../khelpcenter.nix | 0 .../kio-extras.nix | 0 .../kompare.nix | 0 .../konsole.nix | 0 .../l10n.nix | 0 .../libkdcraw.nix | 0 .../libkexiv2.nix | 0 .../libkipi.nix | 0 .../libkomparediff2.nix | 0 .../okular.nix | 0 .../print-manager.nix | 0 .../spectacle.nix | 0 pkgs/desktops/kde-5/applications/srcs.nix | 2093 +++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- 40 files changed, 2101 insertions(+), 2103 deletions(-) delete mode 100644 pkgs/desktops/kde-5/applications-16.04/srcs.nix rename pkgs/desktops/kde-5/{applications-16.04 => applications}/ark/0001-fix-start-from-plasma.patch (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/ark/default.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/baloo-widgets.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/default.nix (82%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/dolphin-plugins.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/dolphin.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/ffmpegthumbs.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/filelight.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/gpgmepp.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/gwenview.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kate.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kcalc.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kcolorchooser.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kde-app.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kde-locale-4.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kde-locale-5.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kdegraphics-thumbnailers.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kdelibs/0001-old-kde4-cmake-policies.patch (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kdelibs/0002-polkit-install-path.patch (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kdelibs/0003-remove_xdg_impurities.patch (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kdelibs/default.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kdelibs/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kdenetwork-filesharing.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kgpg.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/khelpcenter.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kio-extras.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kompare.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/konsole.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/l10n.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/libkdcraw.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/libkexiv2.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/libkipi.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/libkomparediff2.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/okular.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/print-manager.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/spectacle.nix (100%) create mode 100644 pkgs/desktops/kde-5/applications/srcs.nix diff --git a/maintainers/scripts/generate-kde-applications.sh b/maintainers/scripts/generate-kde-applications.sh index 525abcc3c2d..b4073a05b88 100755 --- a/maintainers/scripts/generate-kde-applications.sh +++ b/maintainers/scripts/generate-kde-applications.sh @@ -1,3 +1,5 @@ #!/bin/sh -./fetch-kde-qt.sh http://download.kde.org/stable/applications/16.04.2/ -A '*.tar.xz' +./maintainers/scripts/fetch-kde-qt.sh \ + http://download.kde.org/stable/applications/16.04.3/ -A '*.tar.xz' \ + >pkgs/desktops/kde-5/applications/srcs.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/srcs.nix b/pkgs/desktops/kde-5/applications-16.04/srcs.nix deleted file mode 100644 index 6193253e96d..00000000000 --- a/pkgs/desktops/kde-5/applications-16.04/srcs.nix +++ /dev/null @@ -1,2093 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - akonadi = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/akonadi-16.04.2.tar.xz"; - sha256 = "0k28dyfpnnnsx6i7cvx1ahmcac1kc2bgzzwqk7mpcwpsmjm0s66v"; - name = "akonadi-16.04.2.tar.xz"; - }; - }; - akonadi-calendar = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/akonadi-calendar-16.04.2.tar.xz"; - sha256 = "0fmq28b1smins3hvhg64rysjqwvqb38x6ybppz3hzqsq6mdmnc7a"; - name = "akonadi-calendar-16.04.2.tar.xz"; - }; - }; - akonadi-search = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/akonadi-search-16.04.2.tar.xz"; - sha256 = "03j7vmccsyr6glc1q2da6znlrkpcvqywzqrb2ychnfmrgjc0xnh4"; - name = "akonadi-search-16.04.2.tar.xz"; - }; - }; - analitza = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/analitza-16.04.2.tar.xz"; - sha256 = "16b1fqkiznds6lv09wcc13n9g8q1a9x6d0k2f7qcd075riq8qp9h"; - name = "analitza-16.04.2.tar.xz"; - }; - }; - ark = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ark-16.04.2.tar.xz"; - sha256 = "02mfwhn5cqxf3a55bm6ij6vmmkyfhacv4apn16bcq458yckjxmhg"; - name = "ark-16.04.2.tar.xz"; - }; - }; - artikulate = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/artikulate-16.04.2.tar.xz"; - sha256 = "0xil6a2vkji91fhwl9r4cifgg1rf0jp0wzqrqavcb22amfx5j1qn"; - name = "artikulate-16.04.2.tar.xz"; - }; - }; - audiocd-kio = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/audiocd-kio-16.04.2.tar.xz"; - sha256 = "1f7im7qzaz6rk8va6fhn3h5zwq0vfh4mfn01j1kc92kz7g7303k8"; - name = "audiocd-kio-16.04.2.tar.xz"; - }; - }; - baloo-widgets = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/baloo-widgets-16.04.2.tar.xz"; - sha256 = "0hff48c51vsdqkvha5s0aw4sml9gkk3g241dv91qavg513mcs6ns"; - name = "baloo-widgets-16.04.2.tar.xz"; - }; - }; - blinken = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/blinken-16.04.2.tar.xz"; - sha256 = "016vk89axs0bvn4hsdmvx0cks9f87x3czrdn6n01cvzlspgl23sg"; - name = "blinken-16.04.2.tar.xz"; - }; - }; - bomber = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/bomber-16.04.2.tar.xz"; - sha256 = "0rzqgydpqaynnfbgajka7hkb0gj360i0chy0q7brha1cilglz9f6"; - name = "bomber-16.04.2.tar.xz"; - }; - }; - bovo = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/bovo-16.04.2.tar.xz"; - sha256 = "0iiwqna6h2y698cq7llf6djq5l0bvhg1yxlj3mqkjafgq2542dq5"; - name = "bovo-16.04.2.tar.xz"; - }; - }; - calendarsupport = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/calendarsupport-16.04.2.tar.xz"; - sha256 = "14g5cwj92hkkjpcs2glgimimkcrkl49wckrjnnymmkmj53qf85bs"; - name = "calendarsupport-16.04.2.tar.xz"; - }; - }; - cantor = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/cantor-16.04.2.tar.xz"; - sha256 = "0l2hkpinh4vxgrfs2vjjpp2995q4c89fa8hwf0d92ri3smrfmmrp"; - name = "cantor-16.04.2.tar.xz"; - }; - }; - cervisia = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/cervisia-16.04.2.tar.xz"; - sha256 = "07wbwydq532jhz5xrd6n92r94fxbvlll3mg0hlz2rizc008ni2z4"; - name = "cervisia-16.04.2.tar.xz"; - }; - }; - dolphin = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/dolphin-16.04.2.tar.xz"; - sha256 = "0fs53lxknzzqxrghdb4ba5swrhxfgisqdc69fm7znsjqzpk4l7v2"; - name = "dolphin-16.04.2.tar.xz"; - }; - }; - dolphin-plugins = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/dolphin-plugins-16.04.2.tar.xz"; - sha256 = "078aqhfybyr6k5s716pwjr94rlv1iklq1l2fapyjqfd92ffxnb9c"; - name = "dolphin-plugins-16.04.2.tar.xz"; - }; - }; - dragon = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/dragon-16.04.2.tar.xz"; - sha256 = "160qj3ka3wqs35v01769jijfxc08vlzlbgr99z7acnicv3s2p4j4"; - name = "dragon-16.04.2.tar.xz"; - }; - }; - eventviews = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/eventviews-16.04.2.tar.xz"; - sha256 = "1m6kj8y310kxgw3nkrn4wvgnziqx7igbjyd3jq1459issfiv89ay"; - name = "eventviews-16.04.2.tar.xz"; - }; - }; - ffmpegthumbs = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ffmpegthumbs-16.04.2.tar.xz"; - sha256 = "0l0fgnq25j3xbnxl78pl03gr4rx8lndy7254487yqh6gcq9ir4q0"; - name = "ffmpegthumbs-16.04.2.tar.xz"; - }; - }; - filelight = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/filelight-16.04.2.tar.xz"; - sha256 = "0rl2rc7p92bawzyfplnfmg020yvjrdslk3vr3fn37zriaq8nsdx3"; - name = "filelight-16.04.2.tar.xz"; - }; - }; - gpgmepp = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/gpgmepp-16.04.2.tar.xz"; - sha256 = "0p3szvx59hrfwg81nf3bwxy2wyan0y8ahri70icq4dq6wr1qswg8"; - name = "gpgmepp-16.04.2.tar.xz"; - }; - }; - granatier = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/granatier-16.04.2.tar.xz"; - sha256 = "131q61zc78mw26bg3z0fn61iw5jp656lizlh3bq2kw76n6gcar3q"; - name = "granatier-16.04.2.tar.xz"; - }; - }; - grantleetheme = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/grantleetheme-16.04.2.tar.xz"; - sha256 = "1glwcs4j19pbfsqq79krq8v62h8pdmm327jhsiwcbxzxmnl30r5p"; - name = "grantleetheme-16.04.2.tar.xz"; - }; - }; - gwenview = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/gwenview-16.04.2.tar.xz"; - sha256 = "1p1wfdgyl94mis8zvwqd32sk2wfwycz6ppsznaksvxjrzwlyxbl0"; - name = "gwenview-16.04.2.tar.xz"; - }; - }; - incidenceeditor = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/incidenceeditor-16.04.2.tar.xz"; - sha256 = "1q9vy4l1ysxjnjdgq78gy5sj35z4wxjx379l1jspcdq2ibnqisl0"; - name = "incidenceeditor-16.04.2.tar.xz"; - }; - }; - jovie = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/jovie-16.04.2.tar.xz"; - sha256 = "02jslqk8yi54s8qhz796aj7z00h6swhpzqp28idh0fc9hzn5slpm"; - name = "jovie-16.04.2.tar.xz"; - }; - }; - juk = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/juk-16.04.2.tar.xz"; - sha256 = "05f3nj3ch4cjglj9xs0j580xks5xsa1wf94kw3vz5qsswsi3h93v"; - name = "juk-16.04.2.tar.xz"; - }; - }; - kaccessible = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kaccessible-16.04.2.tar.xz"; - sha256 = "12ffbhc8wgqb0qcr03s9dch0s13dxa3fgs18vinjqswmsrg7f99a"; - name = "kaccessible-16.04.2.tar.xz"; - }; - }; - kaccounts-integration = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kaccounts-integration-16.04.2.tar.xz"; - sha256 = "0l9hlk4a3ryrjhppyp0l0qygfgqxf3m5977cybyzmsnf8yj0aqg7"; - name = "kaccounts-integration-16.04.2.tar.xz"; - }; - }; - kaccounts-providers = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kaccounts-providers-16.04.2.tar.xz"; - sha256 = "1kldqkxvaw0782yixig6dsr5r9ybpqf043qdzw5hm5rdrzssr4j0"; - name = "kaccounts-providers-16.04.2.tar.xz"; - }; - }; - kajongg = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kajongg-16.04.2.tar.xz"; - sha256 = "0g1fmy7m9a8n0z6p1dgdyinv6yfkp91jxji5vm7yrlkkas7l0x0v"; - name = "kajongg-16.04.2.tar.xz"; - }; - }; - kalarmcal = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kalarmcal-16.04.2.tar.xz"; - sha256 = "1y3bhphg4lb9dayycp2xpdvzmk8n47qlz6cxxasyr8kc32v6i1a7"; - name = "kalarmcal-16.04.2.tar.xz"; - }; - }; - kalgebra = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kalgebra-16.04.2.tar.xz"; - sha256 = "02xh19igwwdvmw233flvvwjh01kph314z88vd4fzkczn000nqfax"; - name = "kalgebra-16.04.2.tar.xz"; - }; - }; - kalzium = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kalzium-16.04.2.tar.xz"; - sha256 = "18q6mbdc40my0xk2n28fmjvcyqv46jckqslkgr183yhy0aqbdgh0"; - name = "kalzium-16.04.2.tar.xz"; - }; - }; - kamera = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kamera-16.04.2.tar.xz"; - sha256 = "1ix30y9hvh1dn4xvgmg1y70bj2xdvkl5x5jwhppccb1ck2jlmp7g"; - name = "kamera-16.04.2.tar.xz"; - }; - }; - kanagram = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kanagram-16.04.2.tar.xz"; - sha256 = "17d9jw9fj1x3v6l6q2n3z5b92gpvg8fydbpinym9wzjrixpcqx1q"; - name = "kanagram-16.04.2.tar.xz"; - }; - }; - kapman = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kapman-16.04.2.tar.xz"; - sha256 = "0bi4mvashs5y5wr9fi8rmmq4f3ww9qixh850ar778dwdf11cy9vc"; - name = "kapman-16.04.2.tar.xz"; - }; - }; - kapptemplate = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kapptemplate-16.04.2.tar.xz"; - sha256 = "0xs8bfknfa38fhn1jnk7xxmlsgrwnvbg78fjpq8mfnjlzi9xf55c"; - name = "kapptemplate-16.04.2.tar.xz"; - }; - }; - kate = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kate-16.04.2.tar.xz"; - sha256 = "04b89mp11jbi6dpwmq9g7j9c4favykbxbsc34li7cisr1d8nfxyv"; - name = "kate-16.04.2.tar.xz"; - }; - }; - katomic = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/katomic-16.04.2.tar.xz"; - sha256 = "0vj41ad41bw7dy94i7aw74211r45p703ajh8kgk32zv1157h30va"; - name = "katomic-16.04.2.tar.xz"; - }; - }; - kblackbox = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kblackbox-16.04.2.tar.xz"; - sha256 = "1ad9px5d4z0c9ap4cl7jxvh6scid965d2phspcvhy68yc4pxk161"; - name = "kblackbox-16.04.2.tar.xz"; - }; - }; - kblocks = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kblocks-16.04.2.tar.xz"; - sha256 = "1iyymacvzi8acbq0vlhcw0zdykkafjj674s997mz7pzbb5q7rli3"; - name = "kblocks-16.04.2.tar.xz"; - }; - }; - kblog = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kblog-16.04.2.tar.xz"; - sha256 = "0ljc22dhvjb2j0qz6h693h8sxixjsd01lgrx9g0r1qi9zy55kdk0"; - name = "kblog-16.04.2.tar.xz"; - }; - }; - kbounce = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kbounce-16.04.2.tar.xz"; - sha256 = "19jj1abv0831zkql1khd1n6yp9gwd6znf3x4w0c1yijnhr91aja5"; - name = "kbounce-16.04.2.tar.xz"; - }; - }; - kbreakout = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kbreakout-16.04.2.tar.xz"; - sha256 = "1czfnzndwf2g796nc7pn4wvkm1gfzizjf92inni16f7s1mqka420"; - name = "kbreakout-16.04.2.tar.xz"; - }; - }; - kbruch = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kbruch-16.04.2.tar.xz"; - sha256 = "1dbaympl6kf96zc93p5jawb0w77rcjhj8akrsbwrhvkzz3a9nfvh"; - name = "kbruch-16.04.2.tar.xz"; - }; - }; - kcachegrind = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kcachegrind-16.04.2.tar.xz"; - sha256 = "105pr1njfj8r4i9lcgd2h3f2k1np19ajjvlykxa8ibim99nhj062"; - name = "kcachegrind-16.04.2.tar.xz"; - }; - }; - kcalc = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kcalc-16.04.2.tar.xz"; - sha256 = "1pgsbyffij6iil0bgpvxfb1wdikj90n2q0ykazahclnraqc3swl6"; - name = "kcalc-16.04.2.tar.xz"; - }; - }; - kcalcore = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kcalcore-16.04.2.tar.xz"; - sha256 = "18w11kyyrchzdcqff2w4bzbspbaak513kqvkas87ainzp29zqs1p"; - name = "kcalcore-16.04.2.tar.xz"; - }; - }; - kcalutils = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kcalutils-16.04.2.tar.xz"; - sha256 = "17c6c5ybyb9asvn3r5bq03hbpkbb5hifvhqlimgbr54ldrm5k950"; - name = "kcalutils-16.04.2.tar.xz"; - }; - }; - kcharselect = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kcharselect-16.04.2.tar.xz"; - sha256 = "0qwks9l6ihzfbfcricy3zmpbdq0hlc5hal6zsb3b3j2pcrb95x4l"; - name = "kcharselect-16.04.2.tar.xz"; - }; - }; - kcolorchooser = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kcolorchooser-16.04.2.tar.xz"; - sha256 = "0809rjs7z711fc07bmm95psy80h0knz579dzk9jbphrnj8irmbqk"; - name = "kcolorchooser-16.04.2.tar.xz"; - }; - }; - kcontacts = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kcontacts-16.04.2.tar.xz"; - sha256 = "1gdbwq5vqgcn2xpl0q676awvc7k8w7fqh5wvmq6s4qdc2i1knlxn"; - name = "kcontacts-16.04.2.tar.xz"; - }; - }; - kcron = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kcron-16.04.2.tar.xz"; - sha256 = "0qmw74c292mbpj683znr3ax1m6mkdyprgw3ql2xc0bl65vxspl00"; - name = "kcron-16.04.2.tar.xz"; - }; - }; - kde-baseapps = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-baseapps-16.04.2.tar.xz"; - sha256 = "1rcwxjvr8b4gdd71dab56057g1z136hpcik15qavxvzk0218n3b4"; - name = "kde-baseapps-16.04.2.tar.xz"; - }; - }; - kdebugsettings = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdebugsettings-16.04.2.tar.xz"; - sha256 = "0sk1marscwq8r032824igyingk25sk6xhzx8y131b592mwjqaabc"; - name = "kdebugsettings-16.04.2.tar.xz"; - }; - }; - kde-dev-scripts = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-dev-scripts-16.04.2.tar.xz"; - sha256 = "0xj9l7sv83ccqi1makxdw20kzwpjfk0gdmagbg8wxr0zrmmzwrzk"; - name = "kde-dev-scripts-16.04.2.tar.xz"; - }; - }; - kde-dev-utils = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-dev-utils-16.04.2.tar.xz"; - sha256 = "1n0m28w29pjmacpyrb0rian3zc8fi829x0pmf1j0k43lfp6m5f6m"; - name = "kde-dev-utils-16.04.2.tar.xz"; - }; - }; - kdeedu-data = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdeedu-data-16.04.2.tar.xz"; - sha256 = "0kpax6ydfzqr4nh5bf7yxij1cfj0vjwpj2s7l0nxg3a3hw1m91xr"; - name = "kdeedu-data-16.04.2.tar.xz"; - }; - }; - kdegraphics-mobipocket = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdegraphics-mobipocket-16.04.2.tar.xz"; - sha256 = "1vs68j28i0p0l7lzq9dyjbbx8h8vf5q6lcp624xcnfbhhgczcwjx"; - name = "kdegraphics-mobipocket-16.04.2.tar.xz"; - }; - }; - kdegraphics-strigi-analyzer = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdegraphics-strigi-analyzer-16.04.2.tar.xz"; - sha256 = "05xjbjfx7gid3vhw56x6vl2xq577dj1lamqjfjwia0a1y8k2jcci"; - name = "kdegraphics-strigi-analyzer-16.04.2.tar.xz"; - }; - }; - kdegraphics-thumbnailers = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdegraphics-thumbnailers-16.04.2.tar.xz"; - sha256 = "1w8zy6zir0yxy1189kbww70sxgb1qcdr3hx4564ac5mnsqi6yyna"; - name = "kdegraphics-thumbnailers-16.04.2.tar.xz"; - }; - }; - kde-l10n-ar = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ar-16.04.2.tar.xz"; - sha256 = "12zg36ghyirgazrk19iyk1lcxs3wb92a1bawvgpfz5k8lr8b063s"; - name = "kde-l10n-ar-16.04.2.tar.xz"; - }; - }; - kde-l10n-ast = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ast-16.04.2.tar.xz"; - sha256 = "08ca94pln9ylhdlmf6gm4h0k9ggyiz760jrpl27j62940nkzw462"; - name = "kde-l10n-ast-16.04.2.tar.xz"; - }; - }; - kde-l10n-bg = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-bg-16.04.2.tar.xz"; - sha256 = "15gxgi9p61xva4js94dc7nn27lsfcaalbbas41j6zyvzkychvfdc"; - name = "kde-l10n-bg-16.04.2.tar.xz"; - }; - }; - kde-l10n-bs = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-bs-16.04.2.tar.xz"; - sha256 = "0441gcmwvgrwwdzb7zgbdm2mfc630znylhzkn80nrjryr0g7m75m"; - name = "kde-l10n-bs-16.04.2.tar.xz"; - }; - }; - kde-l10n-ca = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ca-16.04.2.tar.xz"; - sha256 = "059n0ycci6nxsmh2sn8j3npd4h64v2bs0phw7yg990vdnzxfrxxh"; - name = "kde-l10n-ca-16.04.2.tar.xz"; - }; - }; - kde-l10n-ca_valencia = { - version = "ca_valencia-16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ca@valencia-16.04.2.tar.xz"; - sha256 = "0xzhkirfhkd1gm93mw2xi529qlyyljs8vxd36bq2df63a45bjzpa"; - name = "kde-l10n-ca_valencia-16.04.2.tar.xz"; - }; - }; - kde-l10n-cs = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-cs-16.04.2.tar.xz"; - sha256 = "18nfigrna4kpmpiiyasqirh57jf46l6y1vms97m12jkbx4awdxjn"; - name = "kde-l10n-cs-16.04.2.tar.xz"; - }; - }; - kde-l10n-da = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-da-16.04.2.tar.xz"; - sha256 = "0rz5i9q1jhcdh2fa1rh0zw751wwividy3q2z5ijs4ir5yn2qygph"; - name = "kde-l10n-da-16.04.2.tar.xz"; - }; - }; - kde-l10n-de = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-de-16.04.2.tar.xz"; - sha256 = "1vqb1q1jg3lz9qgv4zx1s4gyg3w3zllj92n50pqxzcbfdwajhwp6"; - name = "kde-l10n-de-16.04.2.tar.xz"; - }; - }; - kde-l10n-el = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-el-16.04.2.tar.xz"; - sha256 = "159s1pl21n2pl3ppjgmshz0a374ic3dsrkkwsjnpvi20hhblvzl9"; - name = "kde-l10n-el-16.04.2.tar.xz"; - }; - }; - kde-l10n-en_GB = { - version = "en_GB-16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-en_GB-16.04.2.tar.xz"; - sha256 = "0y6y0f6w1fjdh0ppirdlpw1ywa8mqffwqhyczy0bnws3pbravpii"; - name = "kde-l10n-en_GB-16.04.2.tar.xz"; - }; - }; - kde-l10n-eo = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-eo-16.04.2.tar.xz"; - sha256 = "1g4giais33yj061ikzxf26s6ahhczyg4kdaq54f58lj2sy86x86f"; - name = "kde-l10n-eo-16.04.2.tar.xz"; - }; - }; - kde-l10n-es = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-es-16.04.2.tar.xz"; - sha256 = "0r33v69axgb283zypb9bck2xy3x02d36230qiyvghnpw0kbhxr60"; - name = "kde-l10n-es-16.04.2.tar.xz"; - }; - }; - kde-l10n-et = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-et-16.04.2.tar.xz"; - sha256 = "0676ddhr7gvkr0a319yz4hx3macqfcaal4gbzcggnfxl639j65ab"; - name = "kde-l10n-et-16.04.2.tar.xz"; - }; - }; - kde-l10n-eu = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-eu-16.04.2.tar.xz"; - sha256 = "1af71wkzsr6whmqxjbicz6vs94miw0nz23ifsh45bnlbjdmkrfk7"; - name = "kde-l10n-eu-16.04.2.tar.xz"; - }; - }; - kde-l10n-fa = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-fa-16.04.2.tar.xz"; - sha256 = "0cpslb17x7k1xjcrp35wp54xmbka0k8z3qwwz20x7bbv9hdind5k"; - name = "kde-l10n-fa-16.04.2.tar.xz"; - }; - }; - kde-l10n-fi = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-fi-16.04.2.tar.xz"; - sha256 = "0x952d7yhm2dgj5pqm6spiwmnfphqarny5w27fpywi7fs9dnan9f"; - name = "kde-l10n-fi-16.04.2.tar.xz"; - }; - }; - kde-l10n-fr = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-fr-16.04.2.tar.xz"; - sha256 = "1ay2rn9ki077sml0cjbyhca6f1rmdpmsrq0drrsh5qbn3z0ija73"; - name = "kde-l10n-fr-16.04.2.tar.xz"; - }; - }; - kde-l10n-ga = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ga-16.04.2.tar.xz"; - sha256 = "16vn7nmjfp9bgmr41z71800zsgq4x19lay48ls2fgvgpjk6m3m66"; - name = "kde-l10n-ga-16.04.2.tar.xz"; - }; - }; - kde-l10n-gl = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-gl-16.04.2.tar.xz"; - sha256 = "1hsl3mn7wsgl40wnbyd3ilqp0cdivj9alg4wxmdlz33ybw58apvy"; - name = "kde-l10n-gl-16.04.2.tar.xz"; - }; - }; - kde-l10n-he = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-he-16.04.2.tar.xz"; - sha256 = "03ifbz9id9dhq04hi2z9zkmbp7aijdkfhrv242k4fvrj2ri0zj2z"; - name = "kde-l10n-he-16.04.2.tar.xz"; - }; - }; - kde-l10n-hi = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-hi-16.04.2.tar.xz"; - sha256 = "1iwlgg632dfzw7nhn892cnk28q4qwd4iirwsbz6lzfh8bpnibna5"; - name = "kde-l10n-hi-16.04.2.tar.xz"; - }; - }; - kde-l10n-hr = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-hr-16.04.2.tar.xz"; - sha256 = "1b77mmd50mq7gfxkxjpifsdb6q1m5d7l9cg6w4l1l1mdmkh60nxn"; - name = "kde-l10n-hr-16.04.2.tar.xz"; - }; - }; - kde-l10n-hu = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-hu-16.04.2.tar.xz"; - sha256 = "10338x2r4w8cbr4hkpyia444zgr475p780i3z2317wr7iwq7sfja"; - name = "kde-l10n-hu-16.04.2.tar.xz"; - }; - }; - kde-l10n-ia = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ia-16.04.2.tar.xz"; - sha256 = "109w8nz412fmvld9ban5g2dcaziiq1bjbwh37r3fm4fqbf3c29kz"; - name = "kde-l10n-ia-16.04.2.tar.xz"; - }; - }; - kde-l10n-id = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-id-16.04.2.tar.xz"; - sha256 = "1z6gbv4ipdr1qqanlpa9v3xcb8xq4a5gvbq1g0xibgs1mykn441j"; - name = "kde-l10n-id-16.04.2.tar.xz"; - }; - }; - kde-l10n-is = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-is-16.04.2.tar.xz"; - sha256 = "07r6g2i4f76ag5f60hnn0602q4c3qzpz2fz9wggrdn9wq3mfagda"; - name = "kde-l10n-is-16.04.2.tar.xz"; - }; - }; - kde-l10n-it = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-it-16.04.2.tar.xz"; - sha256 = "0gnjd7crlffjnpnci38d3p9d7j62yknm1swjb15pkrrph7ga31x9"; - name = "kde-l10n-it-16.04.2.tar.xz"; - }; - }; - kde-l10n-ja = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ja-16.04.2.tar.xz"; - sha256 = "1ciij3r7lxmpghv6wvc1i0dhdbzq92r54c6sl8jrpwc301a3si0v"; - name = "kde-l10n-ja-16.04.2.tar.xz"; - }; - }; - kde-l10n-kk = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-kk-16.04.2.tar.xz"; - sha256 = "0qqyl7zndccnh6z49r1x61y6s7ycpq158yp1wy686q7b84zf47wx"; - name = "kde-l10n-kk-16.04.2.tar.xz"; - }; - }; - kde-l10n-km = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-km-16.04.2.tar.xz"; - sha256 = "0p6cgbngbx72cz3qzmbwcn237f0ibnvk55vzdiiwysdlg4zq4nnj"; - name = "kde-l10n-km-16.04.2.tar.xz"; - }; - }; - kde-l10n-ko = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ko-16.04.2.tar.xz"; - sha256 = "0rqsxfq42gxz5ygfsnfsymz0vf0bgk0dwnwcaczv0frjg1mxg8pb"; - name = "kde-l10n-ko-16.04.2.tar.xz"; - }; - }; - kde-l10n-lt = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-lt-16.04.2.tar.xz"; - sha256 = "0x4mqy1m6ybzf70amkzq8c6jzb2idyqpd3d9cqmx56aibs1bmnr3"; - name = "kde-l10n-lt-16.04.2.tar.xz"; - }; - }; - kde-l10n-lv = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-lv-16.04.2.tar.xz"; - sha256 = "1w5ry4br8dzb0vwr9vqd6z4ns89zpjwmr8md4vwp59nc80x4583k"; - name = "kde-l10n-lv-16.04.2.tar.xz"; - }; - }; - kde-l10n-mr = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-mr-16.04.2.tar.xz"; - sha256 = "1bj7adx1h66l6pwcnb17vkhv1iarslbsk73nsxcvkz53sw1l7mrh"; - name = "kde-l10n-mr-16.04.2.tar.xz"; - }; - }; - kde-l10n-nb = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-nb-16.04.2.tar.xz"; - sha256 = "100zma2jp7gfqjc8xzzqqjcvqqqn0g7baiv4r2l24m0cx37m3ndf"; - name = "kde-l10n-nb-16.04.2.tar.xz"; - }; - }; - kde-l10n-nds = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-nds-16.04.2.tar.xz"; - sha256 = "1v8qwjhrjyyjqhbdiznqbhvvb2vg7in1zsjyzjwyimqkm2qca8nh"; - name = "kde-l10n-nds-16.04.2.tar.xz"; - }; - }; - kde-l10n-nl = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-nl-16.04.2.tar.xz"; - sha256 = "1djdvm3nklssgqnz9xgi3sc0vvjrfi0fnpjbyc87r2vg7q33iccq"; - name = "kde-l10n-nl-16.04.2.tar.xz"; - }; - }; - kde-l10n-nn = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-nn-16.04.2.tar.xz"; - sha256 = "0lbk48q8j3clpv867hfpj5qxzxizmx3x6rz87c3qn09kg1nng93z"; - name = "kde-l10n-nn-16.04.2.tar.xz"; - }; - }; - kde-l10n-pa = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-pa-16.04.2.tar.xz"; - sha256 = "129p7x37yx1f3q0n5x7brnkrisnfj7x1m92mnqqmjlsf47na4l97"; - name = "kde-l10n-pa-16.04.2.tar.xz"; - }; - }; - kde-l10n-pl = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-pl-16.04.2.tar.xz"; - sha256 = "0dp3rn1vh4q1ks7165zdjn4avyplg5kg2nbkqg8jcm8702v0f674"; - name = "kde-l10n-pl-16.04.2.tar.xz"; - }; - }; - kde-l10n-pt = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-pt-16.04.2.tar.xz"; - sha256 = "1irk84qzsxa0s6q7jwq3qzc76vkx4i3gd3ymmrw40376n1c2wiv8"; - name = "kde-l10n-pt-16.04.2.tar.xz"; - }; - }; - kde-l10n-pt_BR = { - version = "pt_BR-16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-pt_BR-16.04.2.tar.xz"; - sha256 = "1f7r17zm4bq32xypccmgkaj80hyjrc4dvqd2gkk04pq8kqv22924"; - name = "kde-l10n-pt_BR-16.04.2.tar.xz"; - }; - }; - kde-l10n-ro = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ro-16.04.2.tar.xz"; - sha256 = "172z2vzlldk2g7a65r9dvbsspxszha1m9q2qkzaq9hciklgznr64"; - name = "kde-l10n-ro-16.04.2.tar.xz"; - }; - }; - kde-l10n-ru = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ru-16.04.2.tar.xz"; - sha256 = "060s0gcy1mv7wqmk33ambqcn7dd589vvccjxkwvbqwsn0lsjykyb"; - name = "kde-l10n-ru-16.04.2.tar.xz"; - }; - }; - kde-l10n-sk = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-sk-16.04.2.tar.xz"; - sha256 = "1353kldi2gvhrnb3dpyhnf3lbj22jcd5ri5ar5j7bq4v2jzb36nl"; - name = "kde-l10n-sk-16.04.2.tar.xz"; - }; - }; - kde-l10n-sl = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-sl-16.04.2.tar.xz"; - sha256 = "1ibwa1884l4w5z7ys62pqs359c8aa0m9w5chn6l3p55qlkzvf007"; - name = "kde-l10n-sl-16.04.2.tar.xz"; - }; - }; - kde-l10n-sr = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-sr-16.04.2.tar.xz"; - sha256 = "0zs31gr7lz7fcvcv106aj2ilbkjcd5mqbfvpj6zqkrmjcyi8j6a8"; - name = "kde-l10n-sr-16.04.2.tar.xz"; - }; - }; - kde-l10n-sv = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-sv-16.04.2.tar.xz"; - sha256 = "16h8gvzd52zah3643jxaab1aik93b31hbv07z2mipdpdl2fzl039"; - name = "kde-l10n-sv-16.04.2.tar.xz"; - }; - }; - kde-l10n-tr = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-tr-16.04.2.tar.xz"; - sha256 = "0mysq61p6ph4wrrjkd0nrq6w6mxcsg0q9infrp5sgpaqqds58yia"; - name = "kde-l10n-tr-16.04.2.tar.xz"; - }; - }; - kde-l10n-ug = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ug-16.04.2.tar.xz"; - sha256 = "198f8fk0pw79z7n0b7q5vpsmwfjg2a6l1vwl9qab5a97bcwq4l4d"; - name = "kde-l10n-ug-16.04.2.tar.xz"; - }; - }; - kde-l10n-uk = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-uk-16.04.2.tar.xz"; - sha256 = "18wjsab7dv9li5p6k087h9w3kf9rr5hy08yms1wd3wn2gg566nbi"; - name = "kde-l10n-uk-16.04.2.tar.xz"; - }; - }; - kde-l10n-wa = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-wa-16.04.2.tar.xz"; - sha256 = "1qmrkhf9lfccsvj966pv045i0z56642l7jzd0ry4n0ifngancvqp"; - name = "kde-l10n-wa-16.04.2.tar.xz"; - }; - }; - kde-l10n-zh_CN = { - version = "zh_CN-16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-zh_CN-16.04.2.tar.xz"; - sha256 = "1vcbjl49721gnbg03f07azwr30hv7y0szaagp1kxw8npa1yk9dn2"; - name = "kde-l10n-zh_CN-16.04.2.tar.xz"; - }; - }; - kde-l10n-zh_TW = { - version = "zh_TW-16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-zh_TW-16.04.2.tar.xz"; - sha256 = "1i8ax0cn59plqiq6sd1x0svjq2w37dr2x616q730hjygkks306ik"; - name = "kde-l10n-zh_TW-16.04.2.tar.xz"; - }; - }; - kdelibs = { - version = "4.14.21"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdelibs-4.14.21.tar.xz"; - sha256 = "0hi2rdx3z3xiqbyi1hx04ls88irl30x8as1c9c07zrd4d1qpazs8"; - name = "kdelibs-4.14.21.tar.xz"; - }; - }; - kdenetwork-filesharing = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdenetwork-filesharing-16.04.2.tar.xz"; - sha256 = "026g1m7ch8vy8ckqc9j4aapp8s7c4v59jdj4qx5z8jy7n27645z2"; - name = "kdenetwork-filesharing-16.04.2.tar.xz"; - }; - }; - kdenetwork-strigi-analyzers = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdenetwork-strigi-analyzers-16.04.2.tar.xz"; - sha256 = "03jcl9ibhlqlijkps8ab95prp9bqswi82pd79j2dcqgldy681zm9"; - name = "kdenetwork-strigi-analyzers-16.04.2.tar.xz"; - }; - }; - kdenlive = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdenlive-16.04.2.tar.xz"; - sha256 = "00pn2szyiny137j3kvymcdh28cjpbw5k65ziiljaiw0q6a558ibj"; - name = "kdenlive-16.04.2.tar.xz"; - }; - }; - kdepim = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdepim-16.04.2.tar.xz"; - sha256 = "1vvgblkdz9v5cv01saaph8mxhf7pc1lg9z8aasisx6m14131wdqj"; - name = "kdepim-16.04.2.tar.xz"; - }; - }; - kdepim-addons = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdepim-addons-16.04.2.tar.xz"; - sha256 = "185cp7ld9yjap74xknn9cq0j3ch6l0gpkxgyxr1ngfdvmbwswyrs"; - name = "kdepim-addons-16.04.2.tar.xz"; - }; - }; - kdepim-apps-libs = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdepim-apps-libs-16.04.2.tar.xz"; - sha256 = "1f5mq58zxa9zpif4f8b72w762l8di5gx9zxlpzc62k80z6z5hc3d"; - name = "kdepim-apps-libs-16.04.2.tar.xz"; - }; - }; - kdepimlibs = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdepimlibs-16.04.2.tar.xz"; - sha256 = "11rdb7558b7lvawqvanvdbvq9kmapngmid1fzx0ai5xza7miiplc"; - name = "kdepimlibs-16.04.2.tar.xz"; - }; - }; - kdepim-runtime = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdepim-runtime-16.04.2.tar.xz"; - sha256 = "0rf2axz23lzk4g8686brs8hswj3f0is08vvhcx7y960g7yikm2r2"; - name = "kdepim-runtime-16.04.2.tar.xz"; - }; - }; - kde-runtime = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-runtime-16.04.2.tar.xz"; - sha256 = "070m7x0b97073pnqcy6bcl1yj6zh9vd855638sd8xpxjvqfsf5b9"; - name = "kde-runtime-16.04.2.tar.xz"; - }; - }; - kdesdk-kioslaves = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdesdk-kioslaves-16.04.2.tar.xz"; - sha256 = "0fnr1rqzwlpmgikj3if5xqgnazf5rbnyw69b8lsxxvbs7fy23xmi"; - name = "kdesdk-kioslaves-16.04.2.tar.xz"; - }; - }; - kdesdk-strigi-analyzers = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdesdk-strigi-analyzers-16.04.2.tar.xz"; - sha256 = "0jj1zr044pqn45zndlkdywnjyvm6qyiiaxxhq6vfmi6b54rxdfv3"; - name = "kdesdk-strigi-analyzers-16.04.2.tar.xz"; - }; - }; - kdesdk-thumbnailers = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdesdk-thumbnailers-16.04.2.tar.xz"; - sha256 = "02w5a8q6yn550iwsnjnika9kxpk5ap84d3bij02rym6as36hhdji"; - name = "kdesdk-thumbnailers-16.04.2.tar.xz"; - }; - }; - kdewebdev = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdewebdev-16.04.2.tar.xz"; - sha256 = "1hx51mr6lv9mfx35cf24rp7hn47pwbsnjk4qsb7hlv0049jvidgp"; - name = "kdewebdev-16.04.2.tar.xz"; - }; - }; - kdf = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdf-16.04.2.tar.xz"; - sha256 = "191xzqrdbv38xcxpzr5h24a33l3w8pvjrpymilwbjyjf621h649l"; - name = "kdf-16.04.2.tar.xz"; - }; - }; - kdgantt2 = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdgantt2-16.04.2.tar.xz"; - sha256 = "12xj5sqf1l4i7sakpa5845hdmxb62gbj08irg7dq55wxk6jz1a0r"; - name = "kdgantt2-16.04.2.tar.xz"; - }; - }; - kdiamond = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdiamond-16.04.2.tar.xz"; - sha256 = "0vyyj4ab2avbwy998skr5728221by5l730q2lx9n886wig6w4r34"; - name = "kdiamond-16.04.2.tar.xz"; - }; - }; - kfloppy = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kfloppy-16.04.2.tar.xz"; - sha256 = "0dp921jpwrdq892dgi5axij822zkfkmclr94g5sbpv223gx2ds3p"; - name = "kfloppy-16.04.2.tar.xz"; - }; - }; - kfourinline = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kfourinline-16.04.2.tar.xz"; - sha256 = "0dxxi36pp4k0brv7x2aqycs26kpjgrsydqn2rw0k25gka5msrsm2"; - name = "kfourinline-16.04.2.tar.xz"; - }; - }; - kgeography = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kgeography-16.04.2.tar.xz"; - sha256 = "1rmwcv0pa043k12l64pa8wg1iq2iyv07h04mvj99957856qyzkcj"; - name = "kgeography-16.04.2.tar.xz"; - }; - }; - kget = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kget-16.04.2.tar.xz"; - sha256 = "0mgjpl15m9pihprksy1bbzydp0vbkklkcjd04hfsd0nq0g5dxkpx"; - name = "kget-16.04.2.tar.xz"; - }; - }; - kgoldrunner = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kgoldrunner-16.04.2.tar.xz"; - sha256 = "0ijby2k9ggsqcwrhbwy4w0jazvmy68j5k1hcw1p7vq15s5j2rp1k"; - name = "kgoldrunner-16.04.2.tar.xz"; - }; - }; - kgpg = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kgpg-16.04.2.tar.xz"; - sha256 = "1hqnk5xik1v89d8q2z6y6yp844z9h8v9lc689kszv9prwswg1xj8"; - name = "kgpg-16.04.2.tar.xz"; - }; - }; - khangman = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/khangman-16.04.2.tar.xz"; - sha256 = "12hhvkd6zqj1s5kn0yw8fk8mpwnxhgsapwn702hcvfz1lxkd9qy4"; - name = "khangman-16.04.2.tar.xz"; - }; - }; - khelpcenter = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/khelpcenter-16.04.2.tar.xz"; - sha256 = "06ph45mfadhb12bdcp2rgbvfsq9n2s6wdl5x3fy0hpy58w6yy4cd"; - name = "khelpcenter-16.04.2.tar.xz"; - }; - }; - kholidays = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kholidays-16.04.2.tar.xz"; - sha256 = "1ha5yhjyfblh6j1wfx05433cclgnch8maic495ica014lcdb9ff0"; - name = "kholidays-16.04.2.tar.xz"; - }; - }; - kidentitymanagement = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kidentitymanagement-16.04.2.tar.xz"; - sha256 = "0g3cw81c0549237qlhrx0bna5avnsryniq3gccwy862lsgj92nhv"; - name = "kidentitymanagement-16.04.2.tar.xz"; - }; - }; - kig = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kig-16.04.2.tar.xz"; - sha256 = "07zqs1sbj6vfjfckvf5d4dw43cnc84bivrv3qldlg77k99z0x0wa"; - name = "kig-16.04.2.tar.xz"; - }; - }; - kigo = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kigo-16.04.2.tar.xz"; - sha256 = "057nfhngiwf5cfn8xaysii26b4b16105hw1a98kgf8aynyasrd19"; - name = "kigo-16.04.2.tar.xz"; - }; - }; - killbots = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/killbots-16.04.2.tar.xz"; - sha256 = "0k9psr5w4nbfymldr6x8i5mc91fxzgv4khygfw6bi0w1zdlbp7s3"; - name = "killbots-16.04.2.tar.xz"; - }; - }; - kimap = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kimap-16.04.2.tar.xz"; - sha256 = "0i4hfbm2ch71fj52fc08p0rmsqx8r9hw8ia1r2nipv8wl33a099x"; - name = "kimap-16.04.2.tar.xz"; - }; - }; - kio-extras = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kio-extras-16.04.2.tar.xz"; - sha256 = "1qi580d3aqhkh80sj7vphchsl7xfcjbc100cg81b7rdwpa4qv0aq"; - name = "kio-extras-16.04.2.tar.xz"; - }; - }; - kiriki = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kiriki-16.04.2.tar.xz"; - sha256 = "0pq5ai3f27fn7hh3ni0s99ja94nmrlcy3vhvl4h0f94q16lwwhvf"; - name = "kiriki-16.04.2.tar.xz"; - }; - }; - kiten = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kiten-16.04.2.tar.xz"; - sha256 = "1bxvf01k75yhahq97199q6cf3xcjdc92kn8wr628k3wd6xnqcn0a"; - name = "kiten-16.04.2.tar.xz"; - }; - }; - kjumpingcube = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kjumpingcube-16.04.2.tar.xz"; - sha256 = "115nd7z983cdhcrw3fknha4ham9avjx9vy278xijkqh5m9b5xczj"; - name = "kjumpingcube-16.04.2.tar.xz"; - }; - }; - kldap = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kldap-16.04.2.tar.xz"; - sha256 = "198y963y9ydd4gav5f7fdnarf7kmbpjafqw19z3r22hmqikbc1gq"; - name = "kldap-16.04.2.tar.xz"; - }; - }; - kleopatra = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kleopatra-16.04.2.tar.xz"; - sha256 = "064rc6nrgpkvxjxzmavs7f28dczv6szqnx78say0zxa34azl88vh"; - name = "kleopatra-16.04.2.tar.xz"; - }; - }; - klettres = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/klettres-16.04.2.tar.xz"; - sha256 = "1fy41zw1rc9ggsy04q9qscwz3yn58nsj8xjhr7iwvhk2qhhzyw1v"; - name = "klettres-16.04.2.tar.xz"; - }; - }; - klickety = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/klickety-16.04.2.tar.xz"; - sha256 = "0rz89s4fwbf1qm52ca17y2r9xsfb406xwjbz9mfyil1x80cyahdm"; - name = "klickety-16.04.2.tar.xz"; - }; - }; - klines = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/klines-16.04.2.tar.xz"; - sha256 = "1djhxqvjcqlv4bagcg03k7dngygn8ywqwhhjsc0ql6a1nbrfkh1q"; - name = "klines-16.04.2.tar.xz"; - }; - }; - kmag = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kmag-16.04.2.tar.xz"; - sha256 = "0m7502q0n76cs009giac90sgf8hhza3c8zf5ypb7aydnixcvligs"; - name = "kmag-16.04.2.tar.xz"; - }; - }; - kmahjongg = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kmahjongg-16.04.2.tar.xz"; - sha256 = "09b336jfw7zafzpiddxadvf0h7ch2l5ksdzz1salhqqnqxg271mn"; - name = "kmahjongg-16.04.2.tar.xz"; - }; - }; - kmailtransport = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kmailtransport-16.04.2.tar.xz"; - sha256 = "1dz3w9gxc14bkdp1h05ppw6c3m29kw9ky9c5ajvi6gckynjkg0dz"; - name = "kmailtransport-16.04.2.tar.xz"; - }; - }; - kmbox = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kmbox-16.04.2.tar.xz"; - sha256 = "1mkwv695bzjszrpsv8bpjlid4f933jnkf7vc1l8wlamik88y5i7x"; - name = "kmbox-16.04.2.tar.xz"; - }; - }; - kmime = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kmime-16.04.2.tar.xz"; - sha256 = "0h1a43yi7nzj6s3j5v6v9dp5r2qbbhdamnl2d8jpqkl5hnxf0mlq"; - name = "kmime-16.04.2.tar.xz"; - }; - }; - kmines = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kmines-16.04.2.tar.xz"; - sha256 = "1c4yp6zsva1dyr34cprxmy11iq3p3xxz7j8g8bl35qp95l8cwwhl"; - name = "kmines-16.04.2.tar.xz"; - }; - }; - kmix = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kmix-16.04.2.tar.xz"; - sha256 = "092l0myv9dhx534j96qwqy1gddzc64r15wnansifnn0miv1rsnmb"; - name = "kmix-16.04.2.tar.xz"; - }; - }; - kmousetool = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kmousetool-16.04.2.tar.xz"; - sha256 = "0r4wv17l2xm85nncxz7fagfp7z0fi5hbhc28bqnaggc4yz3jbh7d"; - name = "kmousetool-16.04.2.tar.xz"; - }; - }; - kmouth = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kmouth-16.04.2.tar.xz"; - sha256 = "0xfv9hd8cdszvllwd56qwcg8x3fcz4d64zhf4mi2f3v47a9wrir4"; - name = "kmouth-16.04.2.tar.xz"; - }; - }; - kmplot = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kmplot-16.04.2.tar.xz"; - sha256 = "0bvxgj34llgpk6gv9wv1infb782z6fgigcpiv00xqlr7pgkhsns2"; - name = "kmplot-16.04.2.tar.xz"; - }; - }; - knavalbattle = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/knavalbattle-16.04.2.tar.xz"; - sha256 = "0abwxqy82xrhyfixxj3rivkflj5dkrc82131hmjd35c1lcabh4aw"; - name = "knavalbattle-16.04.2.tar.xz"; - }; - }; - knetwalk = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/knetwalk-16.04.2.tar.xz"; - sha256 = "13399nqhja4wlf3d8zy6ia7ayjsb8kyrmjx6dsw1hdbpgfdj29w0"; - name = "knetwalk-16.04.2.tar.xz"; - }; - }; - kolf = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kolf-16.04.2.tar.xz"; - sha256 = "0h5a20pra3ip6a3cf5kivpbyky5fkhzknkx80dcwi36g4q9qryyh"; - name = "kolf-16.04.2.tar.xz"; - }; - }; - kollision = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kollision-16.04.2.tar.xz"; - sha256 = "09xc2mgipw4a8cmgdqs5mr9r144wjkn2656nidvdxwhizm05k5ib"; - name = "kollision-16.04.2.tar.xz"; - }; - }; - kolourpaint = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kolourpaint-16.04.2.tar.xz"; - sha256 = "0ffnfzmsds5n60w2b7x43q64bvws8z1hs9m80jh4xcz3p2ybkwlg"; - name = "kolourpaint-16.04.2.tar.xz"; - }; - }; - kompare = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kompare-16.04.2.tar.xz"; - sha256 = "09xjws4kb66r6m65srsjx37dvhyj6ifj5yixb77njfkcf140060p"; - name = "kompare-16.04.2.tar.xz"; - }; - }; - konquest = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/konquest-16.04.2.tar.xz"; - sha256 = "1b81z9z7rcbm75phpc7rz5s2159b6f98g3kkry7b1hlh51qajd3v"; - name = "konquest-16.04.2.tar.xz"; - }; - }; - konsole = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/konsole-16.04.2.tar.xz"; - sha256 = "1pp7xfh472vwk4nnhcga73zkb4bxqnmk70dxnn0kxj6z55igrp19"; - name = "konsole-16.04.2.tar.xz"; - }; - }; - kontactinterface = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kontactinterface-16.04.2.tar.xz"; - sha256 = "1yax2bwxhr15pqwy63ki5zriz01l5phvbx2f9whpbccmpbsd3yyh"; - name = "kontactinterface-16.04.2.tar.xz"; - }; - }; - kopete = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kopete-16.04.2.tar.xz"; - sha256 = "16j3j6z0irmqrm4cgm9vwa5nd4rixyirn0hpi2kanzy6m8j623nf"; - name = "kopete-16.04.2.tar.xz"; - }; - }; - kpat = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kpat-16.04.2.tar.xz"; - sha256 = "1qmcnx0zmks37fzr6chx409frb08g61cx0rn2gwad57f3id3dh2m"; - name = "kpat-16.04.2.tar.xz"; - }; - }; - kpimtextedit = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kpimtextedit-16.04.2.tar.xz"; - sha256 = "0r36knm4w4micchjibiika373z9lzqkzhc7pfa38zwpd529wxfk4"; - name = "kpimtextedit-16.04.2.tar.xz"; - }; - }; - kppp = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kppp-16.04.2.tar.xz"; - sha256 = "14p07ph8kc1wlfzf8lbmqhpv5iix392fc81y56bc48ba28czsmp6"; - name = "kppp-16.04.2.tar.xz"; - }; - }; - kqtquickcharts = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kqtquickcharts-16.04.2.tar.xz"; - sha256 = "1bdkv3jpvacliz8120cch415jwlg65gd3xyz5ixkynxzkmilj3kx"; - name = "kqtquickcharts-16.04.2.tar.xz"; - }; - }; - krdc = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/krdc-16.04.2.tar.xz"; - sha256 = "1qn7mci4mschz8a94na6xakl982hrj0g4ccw1hfrhlzyxa7hfx74"; - name = "krdc-16.04.2.tar.xz"; - }; - }; - kremotecontrol = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kremotecontrol-16.04.2.tar.xz"; - sha256 = "1z37qmmp688mn9kiprmnl2zdira60as1bsfn0zy24jnnkskvr3ga"; - name = "kremotecontrol-16.04.2.tar.xz"; - }; - }; - kreversi = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kreversi-16.04.2.tar.xz"; - sha256 = "1b7aqv33qkx18g9bkcna0z7027c4j2kwx6naldhgq3dxgg22gi6k"; - name = "kreversi-16.04.2.tar.xz"; - }; - }; - krfb = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/krfb-16.04.2.tar.xz"; - sha256 = "11arv0h0sgnk21lmw9mzj43cijchljpwy09ifii9a8xxn0cczf5x"; - name = "krfb-16.04.2.tar.xz"; - }; - }; - kross-interpreters = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kross-interpreters-16.04.2.tar.xz"; - sha256 = "1z8sv8vyfi1nx70f72qx5xgaxa8qklm1a1nq0p5x4jl22gf981qz"; - name = "kross-interpreters-16.04.2.tar.xz"; - }; - }; - kruler = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kruler-16.04.2.tar.xz"; - sha256 = "12gm8zy0233djdgfn2clsyamlc5q013pblyv70f5z0j8s2a8293h"; - name = "kruler-16.04.2.tar.xz"; - }; - }; - ksaneplugin = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ksaneplugin-16.04.2.tar.xz"; - sha256 = "0y5yvr09g9x9k8lswpjbhkd6fnbw80dajrjjsjws5rfvi388ps7c"; - name = "ksaneplugin-16.04.2.tar.xz"; - }; - }; - kscd = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kscd-16.04.2.tar.xz"; - sha256 = "0k2q1fqrbpsbjlzyk1az1pyd76dqqwmmdandj7c6aqbl332dca5g"; - name = "kscd-16.04.2.tar.xz"; - }; - }; - kshisen = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kshisen-16.04.2.tar.xz"; - sha256 = "1wl7bv18jvwy44hxa3ys3aaxw0hx68vk3b3vwr381729c0njxzrl"; - name = "kshisen-16.04.2.tar.xz"; - }; - }; - ksirk = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ksirk-16.04.2.tar.xz"; - sha256 = "17j2k8gnx0fh5v6592wfkcl5lbz2fgjv0na423gjij6rvvnb1xxs"; - name = "ksirk-16.04.2.tar.xz"; - }; - }; - ksnakeduel = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ksnakeduel-16.04.2.tar.xz"; - sha256 = "1v0pnkkzk1j2cgkf58vk3ly9yvxyqq2y9xvfnpzv939f8sl10qa7"; - name = "ksnakeduel-16.04.2.tar.xz"; - }; - }; - kspaceduel = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kspaceduel-16.04.2.tar.xz"; - sha256 = "0jspmg7gkjawb50mlafxcaimqm3xp4gpw7a2dm895z8f6lhp0q4q"; - name = "kspaceduel-16.04.2.tar.xz"; - }; - }; - ksquares = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ksquares-16.04.2.tar.xz"; - sha256 = "0l0s978551ziw79sck2fji474pgynvx4ny87f3faplz6adpvclmd"; - name = "ksquares-16.04.2.tar.xz"; - }; - }; - kstars = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kstars-16.04.2.tar.xz"; - sha256 = "1v29ky6id80wgkhj23vb4c1a905zi8xkwyx1fjdqm0b0783p5w0f"; - name = "kstars-16.04.2.tar.xz"; - }; - }; - ksudoku = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ksudoku-16.04.2.tar.xz"; - sha256 = "0ymxjcbjd0dpsjl3jjr4bxj3xbhkpv1zr9mf2fxjpnfz3js9zf7q"; - name = "ksudoku-16.04.2.tar.xz"; - }; - }; - ksystemlog = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ksystemlog-16.04.2.tar.xz"; - sha256 = "0i74xfhfmyxp2i94fdivlf3z38mak78j8yy8by652143g0gz61nz"; - name = "ksystemlog-16.04.2.tar.xz"; - }; - }; - kteatime = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kteatime-16.04.2.tar.xz"; - sha256 = "1y7ih9ii3hk91pbyp7bwgiy8g6hb3bsnjc5a6nlghc3d79zvq77y"; - name = "kteatime-16.04.2.tar.xz"; - }; - }; - ktimer = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktimer-16.04.2.tar.xz"; - sha256 = "06isrcpcbr9n7lhrqv9ahvms8vqz2azw0p6v29sihwskcw933yf0"; - name = "ktimer-16.04.2.tar.xz"; - }; - }; - ktnef = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktnef-16.04.2.tar.xz"; - sha256 = "1picfgmy9m3rfzp2hwgz7npijrb0x8w1zyy7gz4q37g3577gjm79"; - name = "ktnef-16.04.2.tar.xz"; - }; - }; - ktouch = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktouch-16.04.2.tar.xz"; - sha256 = "1jcgg5fxnn4fsv2gjiwijd2k9rw2ljffvw5dqg0pwkmikp7f4pmd"; - name = "ktouch-16.04.2.tar.xz"; - }; - }; - ktp-accounts-kcm = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-accounts-kcm-16.04.2.tar.xz"; - sha256 = "1pzwpfp93p47zghqwfqhgk16j9ar52zcx0kfacpy8z7014wsj02k"; - name = "ktp-accounts-kcm-16.04.2.tar.xz"; - }; - }; - ktp-approver = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-approver-16.04.2.tar.xz"; - sha256 = "1q74di50kl46px23fp4lmx5l0j9ndlxhsfvn78j42lfp6wkgqi8c"; - name = "ktp-approver-16.04.2.tar.xz"; - }; - }; - ktp-auth-handler = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-auth-handler-16.04.2.tar.xz"; - sha256 = "15dm09i4bny5b1958390r1wjsm26kkhmxlfrgd9az4yln8pmidmh"; - name = "ktp-auth-handler-16.04.2.tar.xz"; - }; - }; - ktp-call-ui = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-call-ui-16.04.2.tar.xz"; - sha256 = "0wf6wmxzzpsnwglyf46q6mwznl0r5lmzf8n39a62qf84jgxj3p7v"; - name = "ktp-call-ui-16.04.2.tar.xz"; - }; - }; - ktp-common-internals = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-common-internals-16.04.2.tar.xz"; - sha256 = "04177adil082qfrq7y4lg06hzmx8kcpbdgfisa59wsmmcyydziy1"; - name = "ktp-common-internals-16.04.2.tar.xz"; - }; - }; - ktp-contact-list = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-contact-list-16.04.2.tar.xz"; - sha256 = "017mz9z8248d9hmz37dsnjdfjk4m58y546aq6y93mahywl0dccia"; - name = "ktp-contact-list-16.04.2.tar.xz"; - }; - }; - ktp-contact-runner = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-contact-runner-16.04.2.tar.xz"; - sha256 = "0c3gl5ass4nfmrbvynj8hf3iyrrybn9h4bm07l84hky2bmhqjhkw"; - name = "ktp-contact-runner-16.04.2.tar.xz"; - }; - }; - ktp-desktop-applets = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-desktop-applets-16.04.2.tar.xz"; - sha256 = "1fmm4vi6r9hhj4xaz6lz3rx04l6fkhqq9qrcxbv5xbrif0jw82f6"; - name = "ktp-desktop-applets-16.04.2.tar.xz"; - }; - }; - ktp-filetransfer-handler = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-filetransfer-handler-16.04.2.tar.xz"; - sha256 = "0zlmy9fs8qvk6jzdp9zs3y4jz5nz5asxvcics4hcpbl5s4b5nyf0"; - name = "ktp-filetransfer-handler-16.04.2.tar.xz"; - }; - }; - ktp-kded-module = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-kded-module-16.04.2.tar.xz"; - sha256 = "0bnqv87gbv9idspp7yh8y690d66l0j3x70krg413xk8pqs012r15"; - name = "ktp-kded-module-16.04.2.tar.xz"; - }; - }; - ktp-send-file = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-send-file-16.04.2.tar.xz"; - sha256 = "1nqw7b66z4fkcvbm7cl9vdwwwsbylk0mbj5rs37laddjyn0igcnq"; - name = "ktp-send-file-16.04.2.tar.xz"; - }; - }; - ktp-text-ui = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-text-ui-16.04.2.tar.xz"; - sha256 = "1ls9ns6wb6wvcxli4almc2dv7gzihsihdpb1i171c3yr16d5kmvf"; - name = "ktp-text-ui-16.04.2.tar.xz"; - }; - }; - ktuberling = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktuberling-16.04.2.tar.xz"; - sha256 = "15r6m3861cpnmzyrxf5ixqwp6vvjd875237bbb6h881hgw9xfv57"; - name = "ktuberling-16.04.2.tar.xz"; - }; - }; - kturtle = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kturtle-16.04.2.tar.xz"; - sha256 = "12z7r1fprz83da34msnns6s3ar1734y6cxh0infv758nvmykhkqn"; - name = "kturtle-16.04.2.tar.xz"; - }; - }; - kubrick = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kubrick-16.04.2.tar.xz"; - sha256 = "16mjswzybnpb1iwzaygkva99lf551fz4864mngav1v0v6489ryc1"; - name = "kubrick-16.04.2.tar.xz"; - }; - }; - kuser = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kuser-16.04.2.tar.xz"; - sha256 = "0cxag2p88959vk11qdcxhb3kmr18wrk5chf5644phapyns8lm0i6"; - name = "kuser-16.04.2.tar.xz"; - }; - }; - kwalletmanager = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kwalletmanager-16.04.2.tar.xz"; - sha256 = "1l37ykkkfy8m9x9v9x5yr701nvgxwsx9npqfhlrgaq0clq0xvsxd"; - name = "kwalletmanager-16.04.2.tar.xz"; - }; - }; - kwordquiz = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kwordquiz-16.04.2.tar.xz"; - sha256 = "0nra7gpqfrnl0hl2ankzkbdfqrs3iwr6x6harrhcaxmszpbiw7fa"; - name = "kwordquiz-16.04.2.tar.xz"; - }; - }; - libgravatar = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libgravatar-16.04.2.tar.xz"; - sha256 = "1rw800ch89gd1xsbgm9wz7vbayyvrli7gcnn9miaqhhjgcgpjs6p"; - name = "libgravatar-16.04.2.tar.xz"; - }; - }; - libkcddb = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkcddb-16.04.2.tar.xz"; - sha256 = "14dsc35kh843xsva0csqkv2rgyspvg3ld3gjr8ks4zp7ry1wi6gj"; - name = "libkcddb-16.04.2.tar.xz"; - }; - }; - libkcompactdisc = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkcompactdisc-16.04.2.tar.xz"; - sha256 = "05k19a7mhk5xxd8k653i8xqc58xjrxyphdwsw746cvw3nqpiiaml"; - name = "libkcompactdisc-16.04.2.tar.xz"; - }; - }; - libkdcraw = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkdcraw-16.04.2.tar.xz"; - sha256 = "1kcyhc8gi2av109nracm42q91k7ndmj7yw8q52ssfzkbw4r8c9yw"; - name = "libkdcraw-16.04.2.tar.xz"; - }; - }; - libkdeedu = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkdeedu-16.04.2.tar.xz"; - sha256 = "15prm6lfhpys4n6rsbvfqcm2w3sr315lynsnww8740nk59sjm45f"; - name = "libkdeedu-16.04.2.tar.xz"; - }; - }; - libkdegames = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkdegames-16.04.2.tar.xz"; - sha256 = "1b87g8jihyfzpvws6xwx8cbc118nfdwksh0j2sl7hbnnkgc6s6ia"; - name = "libkdegames-16.04.2.tar.xz"; - }; - }; - libkdepim = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkdepim-16.04.2.tar.xz"; - sha256 = "0p2p19qqdnkpvp1dnm0idffg0x03dwqkrjy426l8ahabl0xp8pl4"; - name = "libkdepim-16.04.2.tar.xz"; - }; - }; - libkeduvocdocument = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkeduvocdocument-16.04.2.tar.xz"; - sha256 = "002scb7b174d03ady232dc2drnphnw51a9a0wb3rdm3kip4m85k1"; - name = "libkeduvocdocument-16.04.2.tar.xz"; - }; - }; - libkexiv2 = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkexiv2-16.04.2.tar.xz"; - sha256 = "11d33wdlhlpbjkrfawb45py5akzd4nyry0vi28mx4hkk5glbhd82"; - name = "libkexiv2-16.04.2.tar.xz"; - }; - }; - libkface = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkface-16.04.2.tar.xz"; - sha256 = "1r97j4dkm509r7nvbdpqnvfzlznlvqbsq9lghqrrcaafizrz074h"; - name = "libkface-16.04.2.tar.xz"; - }; - }; - libkgeomap = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkgeomap-16.04.2.tar.xz"; - sha256 = "0xvgg9cb63bpl9fc68l038zlz38l175n7q3jpcqnx15f6qb8vcpk"; - name = "libkgeomap-16.04.2.tar.xz"; - }; - }; - libkipi = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkipi-16.04.2.tar.xz"; - sha256 = "02gknmsqh9x31p83y7nb550yjr6rfnsdh3m1yqm5n3jyjdmfxd66"; - name = "libkipi-16.04.2.tar.xz"; - }; - }; - libkleo = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkleo-16.04.2.tar.xz"; - sha256 = "1bdfqnrslzmsk7dg3f8g1p4b2m5hd5hvh1ws9phkhilhcxp2b33v"; - name = "libkleo-16.04.2.tar.xz"; - }; - }; - libkmahjongg = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkmahjongg-16.04.2.tar.xz"; - sha256 = "0chszdkcyjmny8j5nhbl9y6334qb7wy3ll16p829cy8k2hj69pb4"; - name = "libkmahjongg-16.04.2.tar.xz"; - }; - }; - libkomparediff2 = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkomparediff2-16.04.2.tar.xz"; - sha256 = "035m9da6cnn0masfn79cmd43fviapr7fldl0diiwpcmjwkpmrp1v"; - name = "libkomparediff2-16.04.2.tar.xz"; - }; - }; - libksane = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libksane-16.04.2.tar.xz"; - sha256 = "1s150l0kcmp98l134k8gwhzwzv4kk3583wv0lxd3l9li2940sjdp"; - name = "libksane-16.04.2.tar.xz"; - }; - }; - libksieve = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libksieve-16.04.2.tar.xz"; - sha256 = "1i51zp4fkyyrh0f998i25yx7i7a9g9kcw5pfaisprh84rbyrdq1w"; - name = "libksieve-16.04.2.tar.xz"; - }; - }; - lokalize = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/lokalize-16.04.2.tar.xz"; - sha256 = "0cnrh49c14j64lv67ylm4fczbwbnrja8g4bwzqaaz1sm1ncxmyr3"; - name = "lokalize-16.04.2.tar.xz"; - }; - }; - lskat = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/lskat-16.04.2.tar.xz"; - sha256 = "0qd5z1c5c8b2vn3rpgms0bqzdbh69ji8h14ascis4znrq2hqc6p2"; - name = "lskat-16.04.2.tar.xz"; - }; - }; - mailcommon = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/mailcommon-16.04.2.tar.xz"; - sha256 = "0bcl0kqyqqhmnjli7qb4k1mgh1wwwbf622sxp9p0y91wwgy2y5f1"; - name = "mailcommon-16.04.2.tar.xz"; - }; - }; - mailimporter = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/mailimporter-16.04.2.tar.xz"; - sha256 = "1r9y91xbbyhd0rabwavi1q16a8rbi63zlsnkb0q64sw73bbyh3zz"; - name = "mailimporter-16.04.2.tar.xz"; - }; - }; - marble = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/marble-16.04.2.tar.xz"; - sha256 = "04wg317ypp25aszgla1vrjdc18p8xvjj1xizj4crzg85n700d81j"; - name = "marble-16.04.2.tar.xz"; - }; - }; - messagelib = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/messagelib-16.04.2.tar.xz"; - sha256 = "0kj7y0l7xgc7km3xnbnzy9316mz81hgv8hh8p5qjczy0bi77cy9c"; - name = "messagelib-16.04.2.tar.xz"; - }; - }; - minuet = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/minuet-16.04.2.tar.xz"; - sha256 = "1iph3g6fp96w686xm38cknqqp7kd1xb3cn7zlx7v32d12n4iasxq"; - name = "minuet-16.04.2.tar.xz"; - }; - }; - mplayerthumbs = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/mplayerthumbs-16.04.2.tar.xz"; - sha256 = "1zr2c5f48xrzyljbycnlg4z5j6fyqrp6545vd0iwaid3nnzxp7q4"; - name = "mplayerthumbs-16.04.2.tar.xz"; - }; - }; - okteta = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/okteta-16.04.2.tar.xz"; - sha256 = "0h5b0b64zs7v2q8wz738dd9llnifjamvq9gb1g05fvq258qan49z"; - name = "okteta-16.04.2.tar.xz"; - }; - }; - okular = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/okular-16.04.2.tar.xz"; - sha256 = "1iw92rkbzsk82gx1ks0iqciv7d4561ab5z65jdn1aszdw5agjs2s"; - name = "okular-16.04.2.tar.xz"; - }; - }; - palapeli = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/palapeli-16.04.2.tar.xz"; - sha256 = "103y3xmbr6km1r1ljmb66sn1d8rha7qkkssqyg1gnxq5xi4wwj1w"; - name = "palapeli-16.04.2.tar.xz"; - }; - }; - parley = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/parley-16.04.2.tar.xz"; - sha256 = "1f8xx30wkw7h4qpg4vpxxmhmibivn5si84bpql2nyjnrjqcaj4af"; - name = "parley-16.04.2.tar.xz"; - }; - }; - picmi = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/picmi-16.04.2.tar.xz"; - sha256 = "05i6d99pbihprl0525w3glxwbgygqincxdmvcma691r4xwdvi8p1"; - name = "picmi-16.04.2.tar.xz"; - }; - }; - pimcommon = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/pimcommon-16.04.2.tar.xz"; - sha256 = "02x63vg599876sldwafvcjb13nf7bivahsh6gg0lkhkqq8gbxd2l"; - name = "pimcommon-16.04.2.tar.xz"; - }; - }; - poxml = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/poxml-16.04.2.tar.xz"; - sha256 = "1d3jswsdzsglk4kwqjivwi2h7br6xw9h4y1bcdqq1n1ibzr9cxap"; - name = "poxml-16.04.2.tar.xz"; - }; - }; - print-manager = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/print-manager-16.04.2.tar.xz"; - sha256 = "0sm6qnd2lk6c354fdah6rj9y2v9aiiss1h4nrpvc4rvb9yxi9hiz"; - name = "print-manager-16.04.2.tar.xz"; - }; - }; - rocs = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/rocs-16.04.2.tar.xz"; - sha256 = "0gfqcvijqxvgyjz5gv9zaj72a351fkac1w0qz8yfbrsch8f190z6"; - name = "rocs-16.04.2.tar.xz"; - }; - }; - signon-kwallet-extension = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/signon-kwallet-extension-16.04.2.tar.xz"; - sha256 = "1hbk5ssi4byi5hbb1gy8337iv1mb2c5l8sw0ckxa8mz7iqd5kg96"; - name = "signon-kwallet-extension-16.04.2.tar.xz"; - }; - }; - spectacle = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/spectacle-16.04.2.tar.xz"; - sha256 = "0yz7gw6x746xqxsgn0iv94zsxx6l8kk5zkyzp0cx3vga925pbpvj"; - name = "spectacle-16.04.2.tar.xz"; - }; - }; - step = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/step-16.04.2.tar.xz"; - sha256 = "14f1i8ssqyp97v4pjl6rhjd2qx9fjxzndbmssm9rww7dv3kgb3p0"; - name = "step-16.04.2.tar.xz"; - }; - }; - svgpart = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/svgpart-16.04.2.tar.xz"; - sha256 = "1zviplnlbl261icdp9c143jw5i90k386xn2jxyf6i2vc1bw8s98w"; - name = "svgpart-16.04.2.tar.xz"; - }; - }; - sweeper = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/sweeper-16.04.2.tar.xz"; - sha256 = "0p58h2dbwdvmrbd897h1wv3bsdfqrgvvqdq1dr6nlicwlp1dxjs1"; - name = "sweeper-16.04.2.tar.xz"; - }; - }; - syndication = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/syndication-16.04.2.tar.xz"; - sha256 = "1yg32bhb3d0y9fl1sgb3g1ky7vww7ax1w91k7sg3w30s7zi6668m"; - name = "syndication-16.04.2.tar.xz"; - }; - }; - umbrello = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/umbrello-16.04.2.tar.xz"; - sha256 = "0avx8s889xiwjcfx5ihj3clr10w1ax4h92pb9zvzx8nrfqp23xgl"; - name = "umbrello-16.04.2.tar.xz"; - }; - }; - zeroconf-ioslave = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/zeroconf-ioslave-16.04.2.tar.xz"; - sha256 = "1ly4x8js0y88nrjddcvbbv4c9gac27y9vpzzr33alr76w6g22kk1"; - name = "zeroconf-ioslave-16.04.2.tar.xz"; - }; - }; -} diff --git a/pkgs/desktops/kde-5/applications-16.04/ark/0001-fix-start-from-plasma.patch b/pkgs/desktops/kde-5/applications/ark/0001-fix-start-from-plasma.patch similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/ark/0001-fix-start-from-plasma.patch rename to pkgs/desktops/kde-5/applications/ark/0001-fix-start-from-plasma.patch diff --git a/pkgs/desktops/kde-5/applications-16.04/ark/default.nix b/pkgs/desktops/kde-5/applications/ark/default.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/ark/default.nix rename to pkgs/desktops/kde-5/applications/ark/default.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/baloo-widgets.nix b/pkgs/desktops/kde-5/applications/baloo-widgets.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/baloo-widgets.nix rename to pkgs/desktops/kde-5/applications/baloo-widgets.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/default.nix b/pkgs/desktops/kde-5/applications/default.nix similarity index 82% rename from pkgs/desktops/kde-5/applications-16.04/default.nix rename to pkgs/desktops/kde-5/applications/default.nix index 0db0c72a6f1..d3dc48b5282 100644 --- a/pkgs/desktops/kde-5/applications-16.04/default.nix +++ b/pkgs/desktops/kde-5/applications/default.nix @@ -2,14 +2,10 @@ # Updates -Before a major version update, make a copy of this directory. (We like to -keep the old version around for a short time after major updates.) - -1. Update the URL in `maintainers/scripts/generate-kde-applications.sh`. -2. From the top of the Nixpkgs tree, run - `./maintainers/scripts/generate-kde-applications.sh > pkgs/desktops/kde-5/applications-$VERSION/srcs.nix`. -3. Check that the new packages build correctly. -4. Commit the changes and open a pull request. +1. Update the URL in `maintainers/scripts/generate-kde-applications.sh` and + run that script from the top of the Nixpkgs tree. +2. Check that the new packages build correctly. +3. Commit the changes and open a pull request. */ diff --git a/pkgs/desktops/kde-5/applications-16.04/dolphin-plugins.nix b/pkgs/desktops/kde-5/applications/dolphin-plugins.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/dolphin-plugins.nix rename to pkgs/desktops/kde-5/applications/dolphin-plugins.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/dolphin.nix b/pkgs/desktops/kde-5/applications/dolphin.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/dolphin.nix rename to pkgs/desktops/kde-5/applications/dolphin.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/ffmpegthumbs.nix b/pkgs/desktops/kde-5/applications/ffmpegthumbs.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/ffmpegthumbs.nix rename to pkgs/desktops/kde-5/applications/ffmpegthumbs.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/filelight.nix b/pkgs/desktops/kde-5/applications/filelight.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/filelight.nix rename to pkgs/desktops/kde-5/applications/filelight.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/gpgmepp.nix b/pkgs/desktops/kde-5/applications/gpgmepp.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/gpgmepp.nix rename to pkgs/desktops/kde-5/applications/gpgmepp.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/gwenview.nix b/pkgs/desktops/kde-5/applications/gwenview.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/gwenview.nix rename to pkgs/desktops/kde-5/applications/gwenview.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kate.nix b/pkgs/desktops/kde-5/applications/kate.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kate.nix rename to pkgs/desktops/kde-5/applications/kate.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kcalc.nix b/pkgs/desktops/kde-5/applications/kcalc.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kcalc.nix rename to pkgs/desktops/kde-5/applications/kcalc.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kcolorchooser.nix b/pkgs/desktops/kde-5/applications/kcolorchooser.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kcolorchooser.nix rename to pkgs/desktops/kde-5/applications/kcolorchooser.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kde-app.nix b/pkgs/desktops/kde-5/applications/kde-app.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kde-app.nix rename to pkgs/desktops/kde-5/applications/kde-app.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kde-locale-4.nix b/pkgs/desktops/kde-5/applications/kde-locale-4.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kde-locale-4.nix rename to pkgs/desktops/kde-5/applications/kde-locale-4.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kde-locale-5.nix b/pkgs/desktops/kde-5/applications/kde-locale-5.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kde-locale-5.nix rename to pkgs/desktops/kde-5/applications/kde-locale-5.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kdegraphics-thumbnailers.nix b/pkgs/desktops/kde-5/applications/kdegraphics-thumbnailers.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kdegraphics-thumbnailers.nix rename to pkgs/desktops/kde-5/applications/kdegraphics-thumbnailers.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/0001-old-kde4-cmake-policies.patch b/pkgs/desktops/kde-5/applications/kdelibs/0001-old-kde4-cmake-policies.patch similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kdelibs/0001-old-kde4-cmake-policies.patch rename to pkgs/desktops/kde-5/applications/kdelibs/0001-old-kde4-cmake-policies.patch diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/0002-polkit-install-path.patch b/pkgs/desktops/kde-5/applications/kdelibs/0002-polkit-install-path.patch similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kdelibs/0002-polkit-install-path.patch rename to pkgs/desktops/kde-5/applications/kdelibs/0002-polkit-install-path.patch diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/0003-remove_xdg_impurities.patch b/pkgs/desktops/kde-5/applications/kdelibs/0003-remove_xdg_impurities.patch similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kdelibs/0003-remove_xdg_impurities.patch rename to pkgs/desktops/kde-5/applications/kdelibs/0003-remove_xdg_impurities.patch diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/default.nix b/pkgs/desktops/kde-5/applications/kdelibs/default.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kdelibs/default.nix rename to pkgs/desktops/kde-5/applications/kdelibs/default.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/setup-hook.sh b/pkgs/desktops/kde-5/applications/kdelibs/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kdelibs/setup-hook.sh rename to pkgs/desktops/kde-5/applications/kdelibs/setup-hook.sh diff --git a/pkgs/desktops/kde-5/applications-16.04/kdenetwork-filesharing.nix b/pkgs/desktops/kde-5/applications/kdenetwork-filesharing.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kdenetwork-filesharing.nix rename to pkgs/desktops/kde-5/applications/kdenetwork-filesharing.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kgpg.nix b/pkgs/desktops/kde-5/applications/kgpg.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kgpg.nix rename to pkgs/desktops/kde-5/applications/kgpg.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/khelpcenter.nix b/pkgs/desktops/kde-5/applications/khelpcenter.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/khelpcenter.nix rename to pkgs/desktops/kde-5/applications/khelpcenter.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kio-extras.nix b/pkgs/desktops/kde-5/applications/kio-extras.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kio-extras.nix rename to pkgs/desktops/kde-5/applications/kio-extras.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kompare.nix b/pkgs/desktops/kde-5/applications/kompare.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kompare.nix rename to pkgs/desktops/kde-5/applications/kompare.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/konsole.nix b/pkgs/desktops/kde-5/applications/konsole.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/konsole.nix rename to pkgs/desktops/kde-5/applications/konsole.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/l10n.nix b/pkgs/desktops/kde-5/applications/l10n.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/l10n.nix rename to pkgs/desktops/kde-5/applications/l10n.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/libkdcraw.nix b/pkgs/desktops/kde-5/applications/libkdcraw.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/libkdcraw.nix rename to pkgs/desktops/kde-5/applications/libkdcraw.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/libkexiv2.nix b/pkgs/desktops/kde-5/applications/libkexiv2.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/libkexiv2.nix rename to pkgs/desktops/kde-5/applications/libkexiv2.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/libkipi.nix b/pkgs/desktops/kde-5/applications/libkipi.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/libkipi.nix rename to pkgs/desktops/kde-5/applications/libkipi.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/libkomparediff2.nix b/pkgs/desktops/kde-5/applications/libkomparediff2.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/libkomparediff2.nix rename to pkgs/desktops/kde-5/applications/libkomparediff2.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/okular.nix b/pkgs/desktops/kde-5/applications/okular.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/okular.nix rename to pkgs/desktops/kde-5/applications/okular.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/print-manager.nix b/pkgs/desktops/kde-5/applications/print-manager.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/print-manager.nix rename to pkgs/desktops/kde-5/applications/print-manager.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/spectacle.nix b/pkgs/desktops/kde-5/applications/spectacle.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/spectacle.nix rename to pkgs/desktops/kde-5/applications/spectacle.nix diff --git a/pkgs/desktops/kde-5/applications/srcs.nix b/pkgs/desktops/kde-5/applications/srcs.nix new file mode 100644 index 00000000000..2eb2afcd0b1 --- /dev/null +++ b/pkgs/desktops/kde-5/applications/srcs.nix @@ -0,0 +1,2093 @@ +# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh +{ fetchurl, mirror }: + +{ + akonadi = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/akonadi-16.04.3.tar.xz"; + sha256 = "1fsv5znj5a7mql8swcq085qjnvcmwyjm74lwj3rdrxmw91s09w96"; + name = "akonadi-16.04.3.tar.xz"; + }; + }; + akonadi-calendar = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/akonadi-calendar-16.04.3.tar.xz"; + sha256 = "18gwsk4snbp475kqpkl3jnca68pprpjhj8xjb4myf0s0bbsi01jl"; + name = "akonadi-calendar-16.04.3.tar.xz"; + }; + }; + akonadi-search = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/akonadi-search-16.04.3.tar.xz"; + sha256 = "109gl55zhrmvz2k31v7i724jm1jllz0yshg556ii3n9raijmny8m"; + name = "akonadi-search-16.04.3.tar.xz"; + }; + }; + analitza = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/analitza-16.04.3.tar.xz"; + sha256 = "0qk2gcrh2qb7krhijzvb95336l4zab4dkhplgbc1k6sdwm7r83dj"; + name = "analitza-16.04.3.tar.xz"; + }; + }; + ark = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ark-16.04.3.tar.xz"; + sha256 = "041bqkha4s01n8jn4agbg1vacfhiwr7x5rds9sh3jr5nvmr2573r"; + name = "ark-16.04.3.tar.xz"; + }; + }; + artikulate = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/artikulate-16.04.3.tar.xz"; + sha256 = "166dnlp34sbnmwjrvl4rg3a9c4s8z46nn7aqp5b0l66iis6qrhyn"; + name = "artikulate-16.04.3.tar.xz"; + }; + }; + audiocd-kio = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/audiocd-kio-16.04.3.tar.xz"; + sha256 = "1jds7f3m0x3f9x2invphsaxmj0gf3af6cbqczilhia2qchsyq0vb"; + name = "audiocd-kio-16.04.3.tar.xz"; + }; + }; + baloo-widgets = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/baloo-widgets-16.04.3.tar.xz"; + sha256 = "06nick4dcs3qqcv7vqs2cn8848yjifhyw79cvc6562siq66vh5zp"; + name = "baloo-widgets-16.04.3.tar.xz"; + }; + }; + blinken = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/blinken-16.04.3.tar.xz"; + sha256 = "1nbi7rshw2qd3jvgkky0hbn8yf38lmrs1x5sbd68wsxvpf2rwwzp"; + name = "blinken-16.04.3.tar.xz"; + }; + }; + bomber = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/bomber-16.04.3.tar.xz"; + sha256 = "1lb4cgsmk99j973gn4j5mqlj6zx8in3hmq8ma9n107y8sg46bzvv"; + name = "bomber-16.04.3.tar.xz"; + }; + }; + bovo = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/bovo-16.04.3.tar.xz"; + sha256 = "0c8jyqlzplkfa55i3pf5f4brxdyszzlp542l8w6dnl7lpazyjrsi"; + name = "bovo-16.04.3.tar.xz"; + }; + }; + calendarsupport = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/calendarsupport-16.04.3.tar.xz"; + sha256 = "1la37axq0jz4palgw4pr0mqaw9s2dmr7jglzws5knvihvq1czls9"; + name = "calendarsupport-16.04.3.tar.xz"; + }; + }; + cantor = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/cantor-16.04.3.tar.xz"; + sha256 = "1mqcmb1dx5gvjaa89sszdkpkgd8sb36mvx074az3w69aj6bkpq7a"; + name = "cantor-16.04.3.tar.xz"; + }; + }; + cervisia = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/cervisia-16.04.3.tar.xz"; + sha256 = "1irxwwyc18n5j79nyyi7zimk9iqbhfhi81vkwfy9fq9w7iis1z0g"; + name = "cervisia-16.04.3.tar.xz"; + }; + }; + dolphin = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/dolphin-16.04.3.tar.xz"; + sha256 = "16c5lnqldc8jmz90ym35l4s21wmn6lg4p5xhyyi5khq9yz9447r0"; + name = "dolphin-16.04.3.tar.xz"; + }; + }; + dolphin-plugins = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/dolphin-plugins-16.04.3.tar.xz"; + sha256 = "1qwq1b9ivivn6sdql1q7kfg80790w1b651vwfqbqdsbgxc9b6qzg"; + name = "dolphin-plugins-16.04.3.tar.xz"; + }; + }; + dragon = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/dragon-16.04.3.tar.xz"; + sha256 = "1d8hrh3mjf3if6asi40arpihwv91xs7ydcmr0nf355vajsn337vl"; + name = "dragon-16.04.3.tar.xz"; + }; + }; + eventviews = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/eventviews-16.04.3.tar.xz"; + sha256 = "1rn3kfrkc48hwgd0b59gy6jax9gd78g7lwgmxcs977xzhl7mc3kh"; + name = "eventviews-16.04.3.tar.xz"; + }; + }; + ffmpegthumbs = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ffmpegthumbs-16.04.3.tar.xz"; + sha256 = "03imnxzkbsfwgcqx1hhkpad6pdyw157picb9ydrlkwqlg0pqcgr0"; + name = "ffmpegthumbs-16.04.3.tar.xz"; + }; + }; + filelight = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/filelight-16.04.3.tar.xz"; + sha256 = "1li4ylbq9vr3vr91y1r085557p22bvqgg4kqm5ra7bdwp9151j09"; + name = "filelight-16.04.3.tar.xz"; + }; + }; + gpgmepp = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/gpgmepp-16.04.3.tar.xz"; + sha256 = "1850pdysi7c1w0nxnhcbrhnkrfqyrcl0laxyjcw1g1ln764pwcmj"; + name = "gpgmepp-16.04.3.tar.xz"; + }; + }; + granatier = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/granatier-16.04.3.tar.xz"; + sha256 = "172rlx3472gq6lv30p8sw09rj4bxj4lxny4xqi0vwkbdmfscfsxw"; + name = "granatier-16.04.3.tar.xz"; + }; + }; + grantleetheme = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/grantleetheme-16.04.3.tar.xz"; + sha256 = "071qybjfa83441xmxd6mjj189blcrds9ddqcpvvna1zlajn0rgby"; + name = "grantleetheme-16.04.3.tar.xz"; + }; + }; + gwenview = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/gwenview-16.04.3.tar.xz"; + sha256 = "02cjbz4zjbxvqcd7cwaxjzdhjhs86m79cdzcf41q1byk41jajshl"; + name = "gwenview-16.04.3.tar.xz"; + }; + }; + incidenceeditor = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/incidenceeditor-16.04.3.tar.xz"; + sha256 = "1yms81yzkj84hn5w8kkzsnxb6m7rn5n1d9n1nap4rh570bmssrjf"; + name = "incidenceeditor-16.04.3.tar.xz"; + }; + }; + jovie = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/jovie-16.04.3.tar.xz"; + sha256 = "0n8bk36n2024rhiy0qfwz03vx8nja2jylwgfqfj4y5lzdqnc9kbz"; + name = "jovie-16.04.3.tar.xz"; + }; + }; + juk = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/juk-16.04.3.tar.xz"; + sha256 = "1nfs23dd5nd5qmdr8c2m6wxaq7m1vrxhdwjm7gqjrskmw3gcd0ai"; + name = "juk-16.04.3.tar.xz"; + }; + }; + kaccessible = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kaccessible-16.04.3.tar.xz"; + sha256 = "1qmqpcp5dfn2iwvkfya5bb8v56d2zw9136swzv9nf44gg8mlayvx"; + name = "kaccessible-16.04.3.tar.xz"; + }; + }; + kaccounts-integration = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kaccounts-integration-16.04.3.tar.xz"; + sha256 = "0wspjy6xpki8i2qkp289hmgz9cg8vqy50fp3ljljddqcgkxmi8lb"; + name = "kaccounts-integration-16.04.3.tar.xz"; + }; + }; + kaccounts-providers = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kaccounts-providers-16.04.3.tar.xz"; + sha256 = "0imnqxcwyk1icbqzhmyz60sv85317w6v2ab3b35vnw65fl7dp7g9"; + name = "kaccounts-providers-16.04.3.tar.xz"; + }; + }; + kajongg = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kajongg-16.04.3.tar.xz"; + sha256 = "0v8cvr0xf6895169w1qa9qw5ix3kb2820p6qs6klpn5jhk5v2xk5"; + name = "kajongg-16.04.3.tar.xz"; + }; + }; + kalarmcal = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kalarmcal-16.04.3.tar.xz"; + sha256 = "1cp9z52914h6ydzvnk1zhg0s2p4i51rx1d2s8x21n7vh4l7g89js"; + name = "kalarmcal-16.04.3.tar.xz"; + }; + }; + kalgebra = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kalgebra-16.04.3.tar.xz"; + sha256 = "17ym0q0qzgq4krk47k9vr6im658rryk51589w7r1ixpbzagwiwnv"; + name = "kalgebra-16.04.3.tar.xz"; + }; + }; + kalzium = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kalzium-16.04.3.tar.xz"; + sha256 = "1dpq0g52qfp3fi4ymynzqalyc2640j52xkkkh85awfmqrprwrrvr"; + name = "kalzium-16.04.3.tar.xz"; + }; + }; + kamera = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kamera-16.04.3.tar.xz"; + sha256 = "10bclanywlz3ac782hp2ahg6dik0q8dsh733w9cxww0v64pg932r"; + name = "kamera-16.04.3.tar.xz"; + }; + }; + kanagram = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kanagram-16.04.3.tar.xz"; + sha256 = "1pnazqmcjhckywch1wkr8ddncpd2anpx233084raynylkrx5m1fg"; + name = "kanagram-16.04.3.tar.xz"; + }; + }; + kapman = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kapman-16.04.3.tar.xz"; + sha256 = "0hzdbk741mb92fzkdpabrjkpw93yvxjwzj0q4dnlw4alyv90b2hi"; + name = "kapman-16.04.3.tar.xz"; + }; + }; + kapptemplate = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kapptemplate-16.04.3.tar.xz"; + sha256 = "07d6vbhs5mhqv9275lgplfp8y8cdx395ykncdr6cnpsgh3swn6ck"; + name = "kapptemplate-16.04.3.tar.xz"; + }; + }; + kate = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kate-16.04.3.tar.xz"; + sha256 = "1a8m7wzsxlxmqd6i90ascynrva61r486hqb3y78n34s64q1h9w4d"; + name = "kate-16.04.3.tar.xz"; + }; + }; + katomic = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/katomic-16.04.3.tar.xz"; + sha256 = "1jcb4fz91abbsfmpwsi55k2nbdg6bdazi135fxr4c3cxbm55zrmk"; + name = "katomic-16.04.3.tar.xz"; + }; + }; + kblackbox = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kblackbox-16.04.3.tar.xz"; + sha256 = "11zkp7yvwsiw54hvxmf55pw7yf165jrw6z56ak4lp936kb8w4i4v"; + name = "kblackbox-16.04.3.tar.xz"; + }; + }; + kblocks = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kblocks-16.04.3.tar.xz"; + sha256 = "11wxi7csqrf0scb7nhyvs6vp4gissig83gjpckksy0jkyszi9j2b"; + name = "kblocks-16.04.3.tar.xz"; + }; + }; + kblog = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kblog-16.04.3.tar.xz"; + sha256 = "0g79jb8wz3xhkq933ia7x00g2z9fb2kmif6wssipk6c88llspi70"; + name = "kblog-16.04.3.tar.xz"; + }; + }; + kbounce = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kbounce-16.04.3.tar.xz"; + sha256 = "0p0zkn9irksf9vb4zh3anbdhq7igjs6lqf2zqk503arjzp3f0aw3"; + name = "kbounce-16.04.3.tar.xz"; + }; + }; + kbreakout = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kbreakout-16.04.3.tar.xz"; + sha256 = "1dndpjzgksbwfqimnww4fzr69fifx7n4jrmjfxh51mkapj2p78mg"; + name = "kbreakout-16.04.3.tar.xz"; + }; + }; + kbruch = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kbruch-16.04.3.tar.xz"; + sha256 = "1f0ws4s6q8p6xn2mhxw039fb331dwk0z6grad20p2m149pw5nc23"; + name = "kbruch-16.04.3.tar.xz"; + }; + }; + kcachegrind = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kcachegrind-16.04.3.tar.xz"; + sha256 = "1lvql6mm032vhmva95fw6mfkwlpigg1cc2vskhylb0kprjaywc83"; + name = "kcachegrind-16.04.3.tar.xz"; + }; + }; + kcalc = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kcalc-16.04.3.tar.xz"; + sha256 = "1bb85fjyc2phgy890c7vxn935400zpcnbh46g42qgfd7pbpy9wm6"; + name = "kcalc-16.04.3.tar.xz"; + }; + }; + kcalcore = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kcalcore-16.04.3.tar.xz"; + sha256 = "0m71j3h7ky21858vxlx3d2pv8mpyaf47rpmb8faffjq8gmqi277l"; + name = "kcalcore-16.04.3.tar.xz"; + }; + }; + kcalutils = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kcalutils-16.04.3.tar.xz"; + sha256 = "01kip66agfjmm6fhlaxfnn4rzikwjb4lnx7siir76zzcv1y8qqyx"; + name = "kcalutils-16.04.3.tar.xz"; + }; + }; + kcharselect = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kcharselect-16.04.3.tar.xz"; + sha256 = "0bqbjlhi8vlx141b1p3xfjdn6cfhxbz1m66qya9pyjnvl4vqxkf4"; + name = "kcharselect-16.04.3.tar.xz"; + }; + }; + kcolorchooser = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kcolorchooser-16.04.3.tar.xz"; + sha256 = "1kh19yd2xy3scb3knganl1c09qd5674algb4cmh7l11n1g16mx7p"; + name = "kcolorchooser-16.04.3.tar.xz"; + }; + }; + kcontacts = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kcontacts-16.04.3.tar.xz"; + sha256 = "1y36q145gfp2qzj9yshswz6kpq5v62by2r1g3zp9dp3wl6hvdzb5"; + name = "kcontacts-16.04.3.tar.xz"; + }; + }; + kcron = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kcron-16.04.3.tar.xz"; + sha256 = "11vy4iz59pfrbdp3z0c9gb7c6h9sps31kc48pjrjiynk6g4xharz"; + name = "kcron-16.04.3.tar.xz"; + }; + }; + kde-baseapps = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-baseapps-16.04.3.tar.xz"; + sha256 = "0silcbkjk7ka81pfnli7qdcvnl5b21ig8q6jc9l10bd14mlgf3ax"; + name = "kde-baseapps-16.04.3.tar.xz"; + }; + }; + kdebugsettings = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdebugsettings-16.04.3.tar.xz"; + sha256 = "18vcikq8ckba7vnkz2lfd613ysn3rjiaxp7v96ngiga1d3x4b3s6"; + name = "kdebugsettings-16.04.3.tar.xz"; + }; + }; + kde-dev-scripts = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-dev-scripts-16.04.3.tar.xz"; + sha256 = "133nj3n2617zdgv88s0zin1mkssa8f75cpfnqjdbd0xcyv2fyfx3"; + name = "kde-dev-scripts-16.04.3.tar.xz"; + }; + }; + kde-dev-utils = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-dev-utils-16.04.3.tar.xz"; + sha256 = "0h84liwdl0i4dlyk6ybr5pcn953i907jb7crhwp8dh7xa9zyjlim"; + name = "kde-dev-utils-16.04.3.tar.xz"; + }; + }; + kdeedu-data = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdeedu-data-16.04.3.tar.xz"; + sha256 = "0b6lkhp8ljscm8snb0yc5kqxqnhxs0rilrw9v68ybqc6xz1pma0y"; + name = "kdeedu-data-16.04.3.tar.xz"; + }; + }; + kdegraphics-mobipocket = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdegraphics-mobipocket-16.04.3.tar.xz"; + sha256 = "119mdbk6zb7ppgqk2p8bmlzqpfmdrbpfb2cdmdw2cawgr0hhpfkm"; + name = "kdegraphics-mobipocket-16.04.3.tar.xz"; + }; + }; + kdegraphics-strigi-analyzer = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdegraphics-strigi-analyzer-16.04.3.tar.xz"; + sha256 = "05pmzqwf6mixb1za3jni1yc1i6x6dwnk9qz4vflkifqjp1lrx823"; + name = "kdegraphics-strigi-analyzer-16.04.3.tar.xz"; + }; + }; + kdegraphics-thumbnailers = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdegraphics-thumbnailers-16.04.3.tar.xz"; + sha256 = "14310riwij79i6f10ld9fsf193bz8k5bhwmkp59h1l6nlhgaxyha"; + name = "kdegraphics-thumbnailers-16.04.3.tar.xz"; + }; + }; + kde-l10n-ar = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ar-16.04.3.tar.xz"; + sha256 = "1363604cck13wxi2i7n6in7qn2ss3qmqb1zsq2a0848d1y451y63"; + name = "kde-l10n-ar-16.04.3.tar.xz"; + }; + }; + kde-l10n-ast = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ast-16.04.3.tar.xz"; + sha256 = "1a1p60djslk05nxb3m89p95w5k83k9jnwrjs26jfmkk1qi1bhxgp"; + name = "kde-l10n-ast-16.04.3.tar.xz"; + }; + }; + kde-l10n-bg = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-bg-16.04.3.tar.xz"; + sha256 = "0ybrki3ba5wslhk1iwh3z27x0h3nv644mrj0ylzjr51k7nxkyn05"; + name = "kde-l10n-bg-16.04.3.tar.xz"; + }; + }; + kde-l10n-bs = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-bs-16.04.3.tar.xz"; + sha256 = "02fpi5ahi3s6p347xwy0908kavj6jx6k4gadwv747fwh5c6879dl"; + name = "kde-l10n-bs-16.04.3.tar.xz"; + }; + }; + kde-l10n-ca = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ca-16.04.3.tar.xz"; + sha256 = "0dxsnlk6my79c6fx7zxg7ccy8jvkl5pk41mh5rn2savla1f8mg20"; + name = "kde-l10n-ca-16.04.3.tar.xz"; + }; + }; + kde-l10n-ca_valencia = { + version = "ca_valencia-16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ca@valencia-16.04.3.tar.xz"; + sha256 = "12i84ii4k94hkgdyxqpysrd7d7jid4swar2kd1vrkx7aw4n331y4"; + name = "kde-l10n-ca_valencia-16.04.3.tar.xz"; + }; + }; + kde-l10n-cs = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-cs-16.04.3.tar.xz"; + sha256 = "0x6sk7rgwwk20hfy7b1wm4s062p36rd4j39a7c79wrhwnc1apsqj"; + name = "kde-l10n-cs-16.04.3.tar.xz"; + }; + }; + kde-l10n-da = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-da-16.04.3.tar.xz"; + sha256 = "1jah412d3yzixlw2wqp29nf2ils4qf9pi5hmafl0qb2ap0jf6p6i"; + name = "kde-l10n-da-16.04.3.tar.xz"; + }; + }; + kde-l10n-de = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-de-16.04.3.tar.xz"; + sha256 = "0ykxlc8l9kq9zy52rgwfs4ilcxa12s99jzwsfn4wxhhhif3brsxs"; + name = "kde-l10n-de-16.04.3.tar.xz"; + }; + }; + kde-l10n-el = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-el-16.04.3.tar.xz"; + sha256 = "0yjq29l9c5kfqd1qgr8rwln09gss23dk7fisznswzfns9mgwwa5r"; + name = "kde-l10n-el-16.04.3.tar.xz"; + }; + }; + kde-l10n-en_GB = { + version = "en_GB-16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-en_GB-16.04.3.tar.xz"; + sha256 = "1abzb25182sk1xr1ppnfpbibspqccg72wxdg14mzq87c3v126p08"; + name = "kde-l10n-en_GB-16.04.3.tar.xz"; + }; + }; + kde-l10n-eo = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-eo-16.04.3.tar.xz"; + sha256 = "1lcb2payk5gq6pqj7wgr8q6f2ww3r11szw799xw4mysclnybadl6"; + name = "kde-l10n-eo-16.04.3.tar.xz"; + }; + }; + kde-l10n-es = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-es-16.04.3.tar.xz"; + sha256 = "1grl52msc6i2xbkgabyjkv4mvmiwlyfy51ipmb29rjygqz7xqrnc"; + name = "kde-l10n-es-16.04.3.tar.xz"; + }; + }; + kde-l10n-et = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-et-16.04.3.tar.xz"; + sha256 = "0a8hkf3yzqzy4sffd3c126icwsfqrhyq3xkqdg0ijz2sph9rx6vd"; + name = "kde-l10n-et-16.04.3.tar.xz"; + }; + }; + kde-l10n-eu = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-eu-16.04.3.tar.xz"; + sha256 = "19083h2yrnw4mpjbx590ypks9ix0axs4lqhd9bria5b5bndhn2pd"; + name = "kde-l10n-eu-16.04.3.tar.xz"; + }; + }; + kde-l10n-fa = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-fa-16.04.3.tar.xz"; + sha256 = "1c23m9s6gzlqbf68c5xqp8brk2q2gqsxskblk0zkial61bwnw77w"; + name = "kde-l10n-fa-16.04.3.tar.xz"; + }; + }; + kde-l10n-fi = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-fi-16.04.3.tar.xz"; + sha256 = "1m7cs18wgza50nb2ybasyg7j0l25bkx6zd1dlnfqdrfc9d7mg7ab"; + name = "kde-l10n-fi-16.04.3.tar.xz"; + }; + }; + kde-l10n-fr = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-fr-16.04.3.tar.xz"; + sha256 = "0zhfbqgir92fc5zgll5w68bdkqv24xsp4wp3vvk8cvgfqr7qxjv1"; + name = "kde-l10n-fr-16.04.3.tar.xz"; + }; + }; + kde-l10n-ga = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ga-16.04.3.tar.xz"; + sha256 = "1p8vfm4b4w070k841lnsxxgwls8dhdadnf48s4igg2zhcnngg5hk"; + name = "kde-l10n-ga-16.04.3.tar.xz"; + }; + }; + kde-l10n-gl = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-gl-16.04.3.tar.xz"; + sha256 = "0l9nr6iqpmacaznl7d02gk6nvd97069qp065qxknsnzzhzxdr8h9"; + name = "kde-l10n-gl-16.04.3.tar.xz"; + }; + }; + kde-l10n-he = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-he-16.04.3.tar.xz"; + sha256 = "0dmz0acqdkg56g52nin13mdpii7p7nv5i4bscc6x5wqsvzcg83az"; + name = "kde-l10n-he-16.04.3.tar.xz"; + }; + }; + kde-l10n-hi = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-hi-16.04.3.tar.xz"; + sha256 = "0ywk9ylf8zjpf5cqchyziw2jmk27nhp0kgjj9a4cg88091q0ix4p"; + name = "kde-l10n-hi-16.04.3.tar.xz"; + }; + }; + kde-l10n-hr = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-hr-16.04.3.tar.xz"; + sha256 = "1cjdp3bm1mf50cdnr389gb58si2n8ylmgmw8xyx974ha7v6mxf71"; + name = "kde-l10n-hr-16.04.3.tar.xz"; + }; + }; + kde-l10n-hu = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-hu-16.04.3.tar.xz"; + sha256 = "12mlm3gczb24k66yxk3spqimzknybpgz9piprrbxabdiha8p11iw"; + name = "kde-l10n-hu-16.04.3.tar.xz"; + }; + }; + kde-l10n-ia = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ia-16.04.3.tar.xz"; + sha256 = "1855ydjczfkn70s3vmdvg0qi06ix0rqp9ry49w15mmb23np8qmg2"; + name = "kde-l10n-ia-16.04.3.tar.xz"; + }; + }; + kde-l10n-id = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-id-16.04.3.tar.xz"; + sha256 = "0ljpg8iz1vjryp9arwr3wr66lscb6r0yd25wssxzsanfp595zhw4"; + name = "kde-l10n-id-16.04.3.tar.xz"; + }; + }; + kde-l10n-is = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-is-16.04.3.tar.xz"; + sha256 = "0xn7a701r80lqgbskkaca085fbkwnv872ph3p2hsiz3ps4aqp4sc"; + name = "kde-l10n-is-16.04.3.tar.xz"; + }; + }; + kde-l10n-it = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-it-16.04.3.tar.xz"; + sha256 = "06sbcp6maf316lr9vsa7922qqymrnj2ppyypx0vjzxswqwgykhvp"; + name = "kde-l10n-it-16.04.3.tar.xz"; + }; + }; + kde-l10n-ja = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ja-16.04.3.tar.xz"; + sha256 = "0p3d9zy6l4axj7p97b2q57ccwkglhamlbfjfw6kk5c26qxss9ig4"; + name = "kde-l10n-ja-16.04.3.tar.xz"; + }; + }; + kde-l10n-kk = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-kk-16.04.3.tar.xz"; + sha256 = "0538hxcy2yc007m2bji8jjhdifdgyf7azbk32qn54bkvliis70l2"; + name = "kde-l10n-kk-16.04.3.tar.xz"; + }; + }; + kde-l10n-km = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-km-16.04.3.tar.xz"; + sha256 = "0b1vryn61pf3dqac4rn6hjznrrdylvsx8bsyamvhry7grdnaq9fp"; + name = "kde-l10n-km-16.04.3.tar.xz"; + }; + }; + kde-l10n-ko = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ko-16.04.3.tar.xz"; + sha256 = "05k261wxvl9plxx6fsx8y6paaqykmsmq5flv9jcgj958llq4d0a1"; + name = "kde-l10n-ko-16.04.3.tar.xz"; + }; + }; + kde-l10n-lt = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-lt-16.04.3.tar.xz"; + sha256 = "1wk6q7i1p7nwa2dl4zqyqja2m615d5ghhn8hnkcnfpc2prslr3lr"; + name = "kde-l10n-lt-16.04.3.tar.xz"; + }; + }; + kde-l10n-lv = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-lv-16.04.3.tar.xz"; + sha256 = "153vdr9q8zp3rm4h2paxg6gm8dk3d6vdvrg9wsk21s1pc2d3kha6"; + name = "kde-l10n-lv-16.04.3.tar.xz"; + }; + }; + kde-l10n-mr = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-mr-16.04.3.tar.xz"; + sha256 = "1lmrs5vihb7zkl15mqihxb5vcrrzphzmfinmkbfb43sw91il8hiq"; + name = "kde-l10n-mr-16.04.3.tar.xz"; + }; + }; + kde-l10n-nb = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-nb-16.04.3.tar.xz"; + sha256 = "03a1d8dzpbzbpd7sr718mwaaihyhvfwfkln09cnahykdykmnb545"; + name = "kde-l10n-nb-16.04.3.tar.xz"; + }; + }; + kde-l10n-nds = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-nds-16.04.3.tar.xz"; + sha256 = "0716l1al3wi6ws2n25gdc845k1536nbxlxskvy1k2cravlabk2j6"; + name = "kde-l10n-nds-16.04.3.tar.xz"; + }; + }; + kde-l10n-nl = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-nl-16.04.3.tar.xz"; + sha256 = "1jy8shpfm7fvkzcg85w1b7h6pcl01hy3dk99cd9plaqgs25z5hg7"; + name = "kde-l10n-nl-16.04.3.tar.xz"; + }; + }; + kde-l10n-nn = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-nn-16.04.3.tar.xz"; + sha256 = "1parcwfwkqs8n784k2mqlpn4gly6mk72akfa0k5250w198qcc1m9"; + name = "kde-l10n-nn-16.04.3.tar.xz"; + }; + }; + kde-l10n-pa = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-pa-16.04.3.tar.xz"; + sha256 = "172p45xxpzh8ifiq35fzi42vad2icj5rpwqbswkd56dgvv8m6xwm"; + name = "kde-l10n-pa-16.04.3.tar.xz"; + }; + }; + kde-l10n-pl = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-pl-16.04.3.tar.xz"; + sha256 = "0nmjd68h4ybn68al8nhnzc9gj78j5zfzsy9h6kl6yzydgxsid9sc"; + name = "kde-l10n-pl-16.04.3.tar.xz"; + }; + }; + kde-l10n-pt = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-pt-16.04.3.tar.xz"; + sha256 = "03c0hwf0sc75kw81h0adbcmp6vi6ngjgq3bk1v7lqz12c3nkc6mf"; + name = "kde-l10n-pt-16.04.3.tar.xz"; + }; + }; + kde-l10n-pt_BR = { + version = "pt_BR-16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-pt_BR-16.04.3.tar.xz"; + sha256 = "1s068mz6r0crqw3jqix9x94dcwk7z9nr4jisxlj8lwfa13qb20a1"; + name = "kde-l10n-pt_BR-16.04.3.tar.xz"; + }; + }; + kde-l10n-ro = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ro-16.04.3.tar.xz"; + sha256 = "0g2w1pjcwc1rk9fsqwmlv9a6hxxqzwcf8r889qcf4vrkra3xdfy8"; + name = "kde-l10n-ro-16.04.3.tar.xz"; + }; + }; + kde-l10n-ru = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ru-16.04.3.tar.xz"; + sha256 = "03jvisz6y2g3y1ci384dn7gb16lcx41cx0xvn4m1mkrry0ij0s4y"; + name = "kde-l10n-ru-16.04.3.tar.xz"; + }; + }; + kde-l10n-sk = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-sk-16.04.3.tar.xz"; + sha256 = "14jy06js16slf1qv20mkw05l06ragf5zcskzzm772q66y1qd712r"; + name = "kde-l10n-sk-16.04.3.tar.xz"; + }; + }; + kde-l10n-sl = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-sl-16.04.3.tar.xz"; + sha256 = "0nq1g4hc3lnd4xwmlfa7lqical0k5rag4mw2xxgakpkhpwij5ff0"; + name = "kde-l10n-sl-16.04.3.tar.xz"; + }; + }; + kde-l10n-sr = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-sr-16.04.3.tar.xz"; + sha256 = "0qc5lfdfj45hpxly2bdy3h65qgq96k2sym56mwb52305dv380qlz"; + name = "kde-l10n-sr-16.04.3.tar.xz"; + }; + }; + kde-l10n-sv = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-sv-16.04.3.tar.xz"; + sha256 = "08rh3waajhynyllnvsghmspxqxr23lk0w5x0r61c2wzcqsvmj8xg"; + name = "kde-l10n-sv-16.04.3.tar.xz"; + }; + }; + kde-l10n-tr = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-tr-16.04.3.tar.xz"; + sha256 = "04fqm0hlzc77hmxkycgd04vhfq9szgf0r16liaxgd03k0p8nk54x"; + name = "kde-l10n-tr-16.04.3.tar.xz"; + }; + }; + kde-l10n-ug = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ug-16.04.3.tar.xz"; + sha256 = "03dk6n5qp5qdgqbrlji9pz9lbi0kdq0w7pgk2f91xgfhnhd6c68b"; + name = "kde-l10n-ug-16.04.3.tar.xz"; + }; + }; + kde-l10n-uk = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-uk-16.04.3.tar.xz"; + sha256 = "0d9xxh2avammp662nsxgj57bzp38wbv56hvbzpscr3qfmyqhdndc"; + name = "kde-l10n-uk-16.04.3.tar.xz"; + }; + }; + kde-l10n-wa = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-wa-16.04.3.tar.xz"; + sha256 = "0hjcn24i96qsvdsf2jhghb2jmgc6z9z2xx7ldkgrq5949vf0dcb0"; + name = "kde-l10n-wa-16.04.3.tar.xz"; + }; + }; + kde-l10n-zh_CN = { + version = "zh_CN-16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-zh_CN-16.04.3.tar.xz"; + sha256 = "19qnnd4lkqf3zd4l3c0ffprd6y0bqdyrvsmhm2jlhx4z7m3c491q"; + name = "kde-l10n-zh_CN-16.04.3.tar.xz"; + }; + }; + kde-l10n-zh_TW = { + version = "zh_TW-16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-zh_TW-16.04.3.tar.xz"; + sha256 = "0kd0lkv3i4nlkgv9wapsyinv407np91h2hh14whkl2dx9mvmd7g1"; + name = "kde-l10n-zh_TW-16.04.3.tar.xz"; + }; + }; + kdelibs = { + version = "4.14.22"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdelibs-4.14.22.tar.xz"; + sha256 = "0rym674pr05in9wghhbwprlw5648ynnklfb858wxj9f3kvlsbjph"; + name = "kdelibs-4.14.22.tar.xz"; + }; + }; + kdenetwork-filesharing = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdenetwork-filesharing-16.04.3.tar.xz"; + sha256 = "05kb0q6krfkx8hm6pxb6qx6ihd0r300qpibk62dj0v4qzvz4fqvl"; + name = "kdenetwork-filesharing-16.04.3.tar.xz"; + }; + }; + kdenetwork-strigi-analyzers = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdenetwork-strigi-analyzers-16.04.3.tar.xz"; + sha256 = "1hhlpj9dzkmg3ajia5mjsxcaq27yl35cpy99afx67n3nb3wf9113"; + name = "kdenetwork-strigi-analyzers-16.04.3.tar.xz"; + }; + }; + kdenlive = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdenlive-16.04.3.tar.xz"; + sha256 = "0354pcfjs9xndh4mb0x4sryg0l9rvmb0qjw45053yg6lq6b3zbym"; + name = "kdenlive-16.04.3.tar.xz"; + }; + }; + kdepim = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdepim-16.04.3.tar.xz"; + sha256 = "1drvf4q50bknm2b806bzi2v80mlrmj1c5d6wpmrmy7f8pp2z7kj2"; + name = "kdepim-16.04.3.tar.xz"; + }; + }; + kdepim-addons = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdepim-addons-16.04.3.tar.xz"; + sha256 = "1gnazsd3ihghccna0880c1nlqv938q3jnn613hxa5p25j9mgvn89"; + name = "kdepim-addons-16.04.3.tar.xz"; + }; + }; + kdepim-apps-libs = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdepim-apps-libs-16.04.3.tar.xz"; + sha256 = "08xrpdq6d51gimi3qs1njvv7h1pl0gwpkifxxn56nznjdrgl37l3"; + name = "kdepim-apps-libs-16.04.3.tar.xz"; + }; + }; + kdepimlibs = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdepimlibs-16.04.3.tar.xz"; + sha256 = "02nj4hml6wns6hkpc7vm0swjfalm5rhrwd33izkyqzp30gyz2bc6"; + name = "kdepimlibs-16.04.3.tar.xz"; + }; + }; + kdepim-runtime = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdepim-runtime-16.04.3.tar.xz"; + sha256 = "129b94nsnwai4fd2rg3zqc5p8k1i7dq0l5z7hai15p5naab7541j"; + name = "kdepim-runtime-16.04.3.tar.xz"; + }; + }; + kde-runtime = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-runtime-16.04.3.tar.xz"; + sha256 = "0pahf8rz4dfwl7c6q8liv6c4rmhiwnv03kfvj4j8lnrhif20y3k9"; + name = "kde-runtime-16.04.3.tar.xz"; + }; + }; + kdesdk-kioslaves = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdesdk-kioslaves-16.04.3.tar.xz"; + sha256 = "15ijhxd7x9mvpfsjv3xbs6l6nvbwa7d6sf25aa2j4h2qxx1qsq2l"; + name = "kdesdk-kioslaves-16.04.3.tar.xz"; + }; + }; + kdesdk-strigi-analyzers = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdesdk-strigi-analyzers-16.04.3.tar.xz"; + sha256 = "1pyqw7vg0r5amma6jjjdwgspig4w0rawj0671qv9v3rgnvxqkcq4"; + name = "kdesdk-strigi-analyzers-16.04.3.tar.xz"; + }; + }; + kdesdk-thumbnailers = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdesdk-thumbnailers-16.04.3.tar.xz"; + sha256 = "1yh4cddpqx6f6xw9rpxwvnw8d31psdgy4gcrd68115jan4r7ppxh"; + name = "kdesdk-thumbnailers-16.04.3.tar.xz"; + }; + }; + kdewebdev = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdewebdev-16.04.3.tar.xz"; + sha256 = "1lkhv4flg7rdsn6wrrnmzqgdwhi9bjisapgsdgr68hqypzhfvbjm"; + name = "kdewebdev-16.04.3.tar.xz"; + }; + }; + kdf = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdf-16.04.3.tar.xz"; + sha256 = "1za42wv569phlfdkdhb9v9hnz8561f8jvyh2vdjb070bkylipk5k"; + name = "kdf-16.04.3.tar.xz"; + }; + }; + kdgantt2 = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdgantt2-16.04.3.tar.xz"; + sha256 = "0xdm105c01svxryxg9jy8sqg9s8jdhm5jmvn662mj50m0nllvqm6"; + name = "kdgantt2-16.04.3.tar.xz"; + }; + }; + kdiamond = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdiamond-16.04.3.tar.xz"; + sha256 = "13rili5pp2zgbdgnr65gy43rlwnjigr3rqp954rbfh16pkdxsjzw"; + name = "kdiamond-16.04.3.tar.xz"; + }; + }; + kfloppy = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kfloppy-16.04.3.tar.xz"; + sha256 = "16mrfk8bqp1fnldxxrpycyx0wg87v2szs406jj1qfyywrz8w76b7"; + name = "kfloppy-16.04.3.tar.xz"; + }; + }; + kfourinline = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kfourinline-16.04.3.tar.xz"; + sha256 = "1ar4lglxy2dpmvl0s68wkmibn7m4qy8paxzhvh3pq95dcbvcg8yp"; + name = "kfourinline-16.04.3.tar.xz"; + }; + }; + kgeography = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kgeography-16.04.3.tar.xz"; + sha256 = "0kqc39i8yj9jah52fc5afh4g94l07faq4jv0si0b3c17x7q64nwh"; + name = "kgeography-16.04.3.tar.xz"; + }; + }; + kget = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kget-16.04.3.tar.xz"; + sha256 = "05sz7r6idkaskf193ryam83g77rzdz96wp1sqs36lr9x513bb5fh"; + name = "kget-16.04.3.tar.xz"; + }; + }; + kgoldrunner = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kgoldrunner-16.04.3.tar.xz"; + sha256 = "1rd6k64qkpa9hz1k2x9sv018fqzv57l74rv78rv54czrc9b0wdby"; + name = "kgoldrunner-16.04.3.tar.xz"; + }; + }; + kgpg = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kgpg-16.04.3.tar.xz"; + sha256 = "0fr3dvfrp6yy9b82k4rc4izwyxvvg2yqz2fq4s6srcsn65rkspv8"; + name = "kgpg-16.04.3.tar.xz"; + }; + }; + khangman = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/khangman-16.04.3.tar.xz"; + sha256 = "0y63sr4q99j7m3yb6hdnydg3rl9hampkpy05qfz9jdm2znq6j1iw"; + name = "khangman-16.04.3.tar.xz"; + }; + }; + khelpcenter = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/khelpcenter-16.04.3.tar.xz"; + sha256 = "1hlwlaja1dwjszyig17f2kfma6li2nqi76yyagfk0b35w8fk50d9"; + name = "khelpcenter-16.04.3.tar.xz"; + }; + }; + kholidays = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kholidays-16.04.3.tar.xz"; + sha256 = "0p52bkysjfd7w24si2dcq7yv7diig2wz1a7x2c7vzwv9qw39m3g6"; + name = "kholidays-16.04.3.tar.xz"; + }; + }; + kidentitymanagement = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kidentitymanagement-16.04.3.tar.xz"; + sha256 = "1nv5nda3wkdhwh3lggb0pmcs4h9csh4kziw6nlk0q9iyymrkf2y0"; + name = "kidentitymanagement-16.04.3.tar.xz"; + }; + }; + kig = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kig-16.04.3.tar.xz"; + sha256 = "162ixbnb9y2h5q358m3cw51c2xapx6rb8yi9q3460jnhxmhvij7p"; + name = "kig-16.04.3.tar.xz"; + }; + }; + kigo = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kigo-16.04.3.tar.xz"; + sha256 = "0324f2mjia73cq2v3kdipw81nsl2q74ziqhxqb9vrjk1jlpq8fhj"; + name = "kigo-16.04.3.tar.xz"; + }; + }; + killbots = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/killbots-16.04.3.tar.xz"; + sha256 = "15jspfavyka86djb19fq7h1x573l7nsb5d8p2zfgrc1qiw794h0h"; + name = "killbots-16.04.3.tar.xz"; + }; + }; + kimap = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kimap-16.04.3.tar.xz"; + sha256 = "0d3ckh7b6jdpwl2cqq93mz0gw6gfa7a0qbvgsrmzl25v1898dbda"; + name = "kimap-16.04.3.tar.xz"; + }; + }; + kio-extras = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kio-extras-16.04.3.tar.xz"; + sha256 = "1sxg7jaklqxaw7s05a83x769f430085wx7bqlbl9xwqdmpbnj3hh"; + name = "kio-extras-16.04.3.tar.xz"; + }; + }; + kiriki = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kiriki-16.04.3.tar.xz"; + sha256 = "1jk5v2z8ivc4q3zcaxmch7kym7pizch1fqpbrvql1ilfbmjgjjp9"; + name = "kiriki-16.04.3.tar.xz"; + }; + }; + kiten = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kiten-16.04.3.tar.xz"; + sha256 = "1rjb9icam7plqj8bhd7gfhbmwa381nszk1f7ibpgwxh1416njg1l"; + name = "kiten-16.04.3.tar.xz"; + }; + }; + kjumpingcube = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kjumpingcube-16.04.3.tar.xz"; + sha256 = "07zz862l1s348shkj9mbwppz54cqa5plw3jdca3fh5spfnllvhm0"; + name = "kjumpingcube-16.04.3.tar.xz"; + }; + }; + kldap = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kldap-16.04.3.tar.xz"; + sha256 = "01vm2q2sxzwapq7qhsgw5vaplsawmvcrd0virwc5k83viy8jxbi4"; + name = "kldap-16.04.3.tar.xz"; + }; + }; + kleopatra = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kleopatra-16.04.3.tar.xz"; + sha256 = "02hbdc976k304qfiak2iy34s8rcqyj8fgbz8p0yfpkh8jxrvgbym"; + name = "kleopatra-16.04.3.tar.xz"; + }; + }; + klettres = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/klettres-16.04.3.tar.xz"; + sha256 = "0xbxvzw3vskna4sxi8yy3z9d80dpjzgpark5wnyclyrdnkla9973"; + name = "klettres-16.04.3.tar.xz"; + }; + }; + klickety = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/klickety-16.04.3.tar.xz"; + sha256 = "12d700laya9apgp5pvrc2vpbz2d1l8dl8q37ccmkixh6dxf78z0c"; + name = "klickety-16.04.3.tar.xz"; + }; + }; + klines = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/klines-16.04.3.tar.xz"; + sha256 = "0xybhlz7m0k4dnxzpxjsx0fk715scjdly9ahdzcwdkf83vd52x97"; + name = "klines-16.04.3.tar.xz"; + }; + }; + kmag = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kmag-16.04.3.tar.xz"; + sha256 = "1pc7a6ry0c4wg5fm42ccmjhgazi2wixbsc9mylk4qwa0246lk8rc"; + name = "kmag-16.04.3.tar.xz"; + }; + }; + kmahjongg = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kmahjongg-16.04.3.tar.xz"; + sha256 = "1zs4ndbf4lm9ry61bb2xcjsc2nnlvz36n8vnk2fpcvhvp266jhd7"; + name = "kmahjongg-16.04.3.tar.xz"; + }; + }; + kmailtransport = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kmailtransport-16.04.3.tar.xz"; + sha256 = "16761r8ddmr7wdrqjwn5am35z8kz028mqcxmj582mrqfyr4w3s0k"; + name = "kmailtransport-16.04.3.tar.xz"; + }; + }; + kmbox = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kmbox-16.04.3.tar.xz"; + sha256 = "0q6vf7813clnp349aq103m38mk0pazmwncmziwxmlwpj814887k2"; + name = "kmbox-16.04.3.tar.xz"; + }; + }; + kmime = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kmime-16.04.3.tar.xz"; + sha256 = "1cwls6kd9sh2iilncq0k2c9nb4hfwa454fmn9y4m5g2p7yb4n70n"; + name = "kmime-16.04.3.tar.xz"; + }; + }; + kmines = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kmines-16.04.3.tar.xz"; + sha256 = "1m5hkanihvd1g1p1131jx1fp1d9ga8yr849ari4mmjnwcmjjlxlv"; + name = "kmines-16.04.3.tar.xz"; + }; + }; + kmix = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kmix-16.04.3.tar.xz"; + sha256 = "0iqqhsq1v1cdy53dby35d8gpb2fll1drk32g82kbs7chddv5mnpd"; + name = "kmix-16.04.3.tar.xz"; + }; + }; + kmousetool = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kmousetool-16.04.3.tar.xz"; + sha256 = "1a4nj6c1nvi2xbnbw6iqml5gbcmfi8ymynp3lvh1h8wrclljj3kd"; + name = "kmousetool-16.04.3.tar.xz"; + }; + }; + kmouth = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kmouth-16.04.3.tar.xz"; + sha256 = "0fwjjcyif4p4w5nzv8s7fvlfp1z3fn2g1zmkjbz7s87bssndmiz4"; + name = "kmouth-16.04.3.tar.xz"; + }; + }; + kmplot = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kmplot-16.04.3.tar.xz"; + sha256 = "0pnawlmqr3fl0sxfll6ch4651q9cp2r1cfw7kn8fj3c9v03g6mfz"; + name = "kmplot-16.04.3.tar.xz"; + }; + }; + knavalbattle = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/knavalbattle-16.04.3.tar.xz"; + sha256 = "1k2wl33ipbhrcbv9hnskss6l46kk05j8rqw3a2kqflql16mv7wga"; + name = "knavalbattle-16.04.3.tar.xz"; + }; + }; + knetwalk = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/knetwalk-16.04.3.tar.xz"; + sha256 = "0jy9v11chrqkw7kddwsjg5aixs0rbkx1g2m624pa3341iqrrqbml"; + name = "knetwalk-16.04.3.tar.xz"; + }; + }; + kolf = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kolf-16.04.3.tar.xz"; + sha256 = "0pbjkzzqfqqxl05kdb1hqfv4linzj2al6hrsp6h7gc2n5s9cq220"; + name = "kolf-16.04.3.tar.xz"; + }; + }; + kollision = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kollision-16.04.3.tar.xz"; + sha256 = "0jwml54bd6bhgm4hygcxzw74274ddx99q45n0i4zh7lx6x7j8zji"; + name = "kollision-16.04.3.tar.xz"; + }; + }; + kolourpaint = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kolourpaint-16.04.3.tar.xz"; + sha256 = "149w95j5fh9jxah2yjchwkcaqgd1x9qmgwnk7mzx5gxcdbawwwcc"; + name = "kolourpaint-16.04.3.tar.xz"; + }; + }; + kompare = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kompare-16.04.3.tar.xz"; + sha256 = "0ilfk8rkb4q1lgvcki0zwlmrbv630b4iyv58g4vnf72gpgnd981v"; + name = "kompare-16.04.3.tar.xz"; + }; + }; + konquest = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/konquest-16.04.3.tar.xz"; + sha256 = "16799yabykvfq7wcsc0vlwhws9iyf1risa8lxfdfmsh6f7yb5kf1"; + name = "konquest-16.04.3.tar.xz"; + }; + }; + konsole = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/konsole-16.04.3.tar.xz"; + sha256 = "1dhb2xyl8qzwhpnvfkqaqcn4qpsj1d9yc28qgvwyb6kn4ygywl7n"; + name = "konsole-16.04.3.tar.xz"; + }; + }; + kontactinterface = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kontactinterface-16.04.3.tar.xz"; + sha256 = "0fh1sy1rqs31km8v1vbv0gqrh7vsc6vdk7ab5cqx9nxkf0kqnj3v"; + name = "kontactinterface-16.04.3.tar.xz"; + }; + }; + kopete = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kopete-16.04.3.tar.xz"; + sha256 = "1fqagh40kx4dad131vild7wxlciwm54ilsrs5ahy63xisbi2aip3"; + name = "kopete-16.04.3.tar.xz"; + }; + }; + kpat = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kpat-16.04.3.tar.xz"; + sha256 = "02hinknnpi5cvpwdih10iizzzci9zhhcpwclw05fcwz65wig6b5r"; + name = "kpat-16.04.3.tar.xz"; + }; + }; + kpimtextedit = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kpimtextedit-16.04.3.tar.xz"; + sha256 = "1kp3wimzvqg7dqh204kdfkqqrlb5mq895bind9g524rc4mxzd882"; + name = "kpimtextedit-16.04.3.tar.xz"; + }; + }; + kppp = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kppp-16.04.3.tar.xz"; + sha256 = "0bnwgf3rvm3c3qgsp8301iba2yisd52miywmfblsh9z7zaf36qp2"; + name = "kppp-16.04.3.tar.xz"; + }; + }; + kqtquickcharts = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kqtquickcharts-16.04.3.tar.xz"; + sha256 = "10hjryss35zz7mj34ix1qgxmkww9d42mqx60ywgkpjv297z06vrv"; + name = "kqtquickcharts-16.04.3.tar.xz"; + }; + }; + krdc = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/krdc-16.04.3.tar.xz"; + sha256 = "1c4ngdc3xip72ag96fzd3fn49v5lli8g61h92c80myx57cs3qsl0"; + name = "krdc-16.04.3.tar.xz"; + }; + }; + kremotecontrol = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kremotecontrol-16.04.3.tar.xz"; + sha256 = "0xw7fmf6npv6n845kc01apc8lqy6fpbas6427292r6qkbjqb7vgz"; + name = "kremotecontrol-16.04.3.tar.xz"; + }; + }; + kreversi = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kreversi-16.04.3.tar.xz"; + sha256 = "1jddmjv5vnp42pgkfrgwsnnzn9bxy90d7wbhdjyqir77vb14ccj5"; + name = "kreversi-16.04.3.tar.xz"; + }; + }; + krfb = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/krfb-16.04.3.tar.xz"; + sha256 = "13ifwp93662b8cx1hary3kx5js1w9wnpi6ykw1f5sriav3xmfyvb"; + name = "krfb-16.04.3.tar.xz"; + }; + }; + kross-interpreters = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kross-interpreters-16.04.3.tar.xz"; + sha256 = "0nl0gb03yqn4rv0i8r6axr7rf5w416f4h5912r9004hwyf1ahzda"; + name = "kross-interpreters-16.04.3.tar.xz"; + }; + }; + kruler = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kruler-16.04.3.tar.xz"; + sha256 = "0317sj7q7x436hzry7blpb8mnbqza7srk49r2jgiasj8i0mlxy5n"; + name = "kruler-16.04.3.tar.xz"; + }; + }; + ksaneplugin = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ksaneplugin-16.04.3.tar.xz"; + sha256 = "1k9zdd3h2zavp4l7npirrj3vbb4hm7gbwgmn6l9x93p8dzpw3xsw"; + name = "ksaneplugin-16.04.3.tar.xz"; + }; + }; + kscd = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kscd-16.04.3.tar.xz"; + sha256 = "0l0wqxcajklymc21libaq1hlzbwwnzmd0s40ls1m8gfwqzrn03k4"; + name = "kscd-16.04.3.tar.xz"; + }; + }; + kshisen = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kshisen-16.04.3.tar.xz"; + sha256 = "1q2acfvbca8jw2yd1xkyny3mplzvsbjlfzilkyc6j4ccply4zsk0"; + name = "kshisen-16.04.3.tar.xz"; + }; + }; + ksirk = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ksirk-16.04.3.tar.xz"; + sha256 = "03kpm7kck3d6nv2m5jmn24ni09pxg8jcfa0p6sjijpinh8n1r6aj"; + name = "ksirk-16.04.3.tar.xz"; + }; + }; + ksnakeduel = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ksnakeduel-16.04.3.tar.xz"; + sha256 = "0h87rbspc0b4fnq21vr9nimzjir0i0gijk2wh1lmfjvfviinw6ww"; + name = "ksnakeduel-16.04.3.tar.xz"; + }; + }; + kspaceduel = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kspaceduel-16.04.3.tar.xz"; + sha256 = "0021pmxgh6pw777s5136hmgc83f5dy9bdk72gzfhjp20khl1dpm1"; + name = "kspaceduel-16.04.3.tar.xz"; + }; + }; + ksquares = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ksquares-16.04.3.tar.xz"; + sha256 = "02byd0if709zc5zrn8a17b68jfh8fi4xilybiih7nppdy9jrmbap"; + name = "ksquares-16.04.3.tar.xz"; + }; + }; + kstars = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kstars-16.04.3.tar.xz"; + sha256 = "159gk8hslzx9lb0jgf2jv0h8p6618l9xkjdfbvydh4zvgixsh467"; + name = "kstars-16.04.3.tar.xz"; + }; + }; + ksudoku = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ksudoku-16.04.3.tar.xz"; + sha256 = "0x9mqzl3s9p3p8x024wllqxff4p065ajirvw05fcqac7vdvndyd0"; + name = "ksudoku-16.04.3.tar.xz"; + }; + }; + ksystemlog = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ksystemlog-16.04.3.tar.xz"; + sha256 = "1fzr5lbwj85zwhc3ydhijwsmm2b3sfrg67xa71vswndfi8g5gh9v"; + name = "ksystemlog-16.04.3.tar.xz"; + }; + }; + kteatime = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kteatime-16.04.3.tar.xz"; + sha256 = "18pm3416kwi4pj71qgpm1qr83xpz5l2xjnrz9nx9vnlz9sdk44w3"; + name = "kteatime-16.04.3.tar.xz"; + }; + }; + ktimer = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktimer-16.04.3.tar.xz"; + sha256 = "0n4b7hrlmr64fm3m5yhi7pg2qj0r0xsb73yzlylgsn8i7m2zjap8"; + name = "ktimer-16.04.3.tar.xz"; + }; + }; + ktnef = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktnef-16.04.3.tar.xz"; + sha256 = "0ra0l0apkf9bpwwcr1i2z1qmax12qd2n01rnpff58hj1zg267aqw"; + name = "ktnef-16.04.3.tar.xz"; + }; + }; + ktouch = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktouch-16.04.3.tar.xz"; + sha256 = "0c2ylp41918wqxahsnkpvq4si37nh6fps53qyd62s09d1aafh28s"; + name = "ktouch-16.04.3.tar.xz"; + }; + }; + ktp-accounts-kcm = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-accounts-kcm-16.04.3.tar.xz"; + sha256 = "0bqcdwfm0l49dkqzj8p254bxl4wabj58g338g0i4ansky5svdfih"; + name = "ktp-accounts-kcm-16.04.3.tar.xz"; + }; + }; + ktp-approver = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-approver-16.04.3.tar.xz"; + sha256 = "1z4sh03w0rzv70qimchgxgmqpxbzsf29mp4pr18qgxvkwcx7nm89"; + name = "ktp-approver-16.04.3.tar.xz"; + }; + }; + ktp-auth-handler = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-auth-handler-16.04.3.tar.xz"; + sha256 = "1llqbjf89bj44wlwkp4pq4drc7qczzdf6ckqlqiidd69rwhqc8q9"; + name = "ktp-auth-handler-16.04.3.tar.xz"; + }; + }; + ktp-call-ui = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-call-ui-16.04.3.tar.xz"; + sha256 = "07d9a28rjnb4xlmpilwzcq8dxiz3pmi57wqm1pphyw8wnf6fz1ls"; + name = "ktp-call-ui-16.04.3.tar.xz"; + }; + }; + ktp-common-internals = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-common-internals-16.04.3.tar.xz"; + sha256 = "1l497fl1mldh926f29f51rn0d3jxkjfmacw483zgglfnl1z2igr6"; + name = "ktp-common-internals-16.04.3.tar.xz"; + }; + }; + ktp-contact-list = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-contact-list-16.04.3.tar.xz"; + sha256 = "1s9cyxl4zkvv6j45gcdk9dkyhblz0p9w5rwdpaailx1wpx55223y"; + name = "ktp-contact-list-16.04.3.tar.xz"; + }; + }; + ktp-contact-runner = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-contact-runner-16.04.3.tar.xz"; + sha256 = "06a72vjqrz52spjcf5gic48hmsbbshsnwws8lk18cnxxc94sbgq0"; + name = "ktp-contact-runner-16.04.3.tar.xz"; + }; + }; + ktp-desktop-applets = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-desktop-applets-16.04.3.tar.xz"; + sha256 = "1qrwy3ghy2aja87dqyiivbcdfj24zji7765225k2djh8k4m9fl25"; + name = "ktp-desktop-applets-16.04.3.tar.xz"; + }; + }; + ktp-filetransfer-handler = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-filetransfer-handler-16.04.3.tar.xz"; + sha256 = "0vacl8djizz6466l095snmyg400i8c8q2pxd7xjq7488pfpvl8b3"; + name = "ktp-filetransfer-handler-16.04.3.tar.xz"; + }; + }; + ktp-kded-module = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-kded-module-16.04.3.tar.xz"; + sha256 = "0jb31d7lcby68dnq33j6yj4nqhd627i4pd0x9dpg32hf7wsc1mhs"; + name = "ktp-kded-module-16.04.3.tar.xz"; + }; + }; + ktp-send-file = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-send-file-16.04.3.tar.xz"; + sha256 = "1fka8fg8sqh8sakaz55ja3b82nwd5a6g1w0r40s5ins8wrxinh24"; + name = "ktp-send-file-16.04.3.tar.xz"; + }; + }; + ktp-text-ui = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-text-ui-16.04.3.tar.xz"; + sha256 = "0bdfmn4jbi8w7jnfm22hbrm3zi9i2g9byfgivlrq6iwb00lk5hxx"; + name = "ktp-text-ui-16.04.3.tar.xz"; + }; + }; + ktuberling = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktuberling-16.04.3.tar.xz"; + sha256 = "1m860sim81j9gm24sjhfhx5spf3ax3m1f9jb8d7zxfc272lln1l0"; + name = "ktuberling-16.04.3.tar.xz"; + }; + }; + kturtle = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kturtle-16.04.3.tar.xz"; + sha256 = "0bj73flllph0r4xps6kdsnjzd2vdayqyran6fd3l7k4f2qnjd70a"; + name = "kturtle-16.04.3.tar.xz"; + }; + }; + kubrick = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kubrick-16.04.3.tar.xz"; + sha256 = "026d5sa1xbqabsf9yj4d94x0abp93z5wdivqdl7hb2zns9w7dgk5"; + name = "kubrick-16.04.3.tar.xz"; + }; + }; + kuser = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kuser-16.04.3.tar.xz"; + sha256 = "1xcb554p0i93gyy8vm1a5aajgv0vhqxa5lpmyfz1ibrbbnm3h0h8"; + name = "kuser-16.04.3.tar.xz"; + }; + }; + kwalletmanager = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kwalletmanager-16.04.3.tar.xz"; + sha256 = "1kfxqzidpbq88liqmh8qmxyycmfx7yyy509fbrb3c3bis0cvpgwq"; + name = "kwalletmanager-16.04.3.tar.xz"; + }; + }; + kwordquiz = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kwordquiz-16.04.3.tar.xz"; + sha256 = "1wnxyshncbxidksqi96h9isq9v88n6dihjv91ml5q2ld1k46sjnv"; + name = "kwordquiz-16.04.3.tar.xz"; + }; + }; + libgravatar = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libgravatar-16.04.3.tar.xz"; + sha256 = "1nr6p484llm4vablm41v080b8hn83254qhgw2lgrndpwl8c8wi58"; + name = "libgravatar-16.04.3.tar.xz"; + }; + }; + libkcddb = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkcddb-16.04.3.tar.xz"; + sha256 = "0k6g4a1n5p4idn0aw2l134fk94py2a35hs1b7frcpvx6f395d7h8"; + name = "libkcddb-16.04.3.tar.xz"; + }; + }; + libkcompactdisc = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkcompactdisc-16.04.3.tar.xz"; + sha256 = "091cijlcax2fgj8grwi7wysqq9f3z4riklv66qx89xs0kqx372c8"; + name = "libkcompactdisc-16.04.3.tar.xz"; + }; + }; + libkdcraw = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkdcraw-16.04.3.tar.xz"; + sha256 = "0qxl9jcn9c6ifvc2r2i9gv6mca83ysn28m92jrhrf2wirn53s5gx"; + name = "libkdcraw-16.04.3.tar.xz"; + }; + }; + libkdeedu = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkdeedu-16.04.3.tar.xz"; + sha256 = "0j0x6psx2nv6v1h0895qqzpdavz3xb4z5amqnbhjiz0kspalpa9p"; + name = "libkdeedu-16.04.3.tar.xz"; + }; + }; + libkdegames = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkdegames-16.04.3.tar.xz"; + sha256 = "1ryjz1k8jfayj4cy3ih5wzbx26qy6mp9zka2bfc8h30pi0l9f8zd"; + name = "libkdegames-16.04.3.tar.xz"; + }; + }; + libkdepim = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkdepim-16.04.3.tar.xz"; + sha256 = "1dxx026fd2hfwdxhwp4fswb05lx8s4wdha7lj5yk4g6s8x11m56a"; + name = "libkdepim-16.04.3.tar.xz"; + }; + }; + libkeduvocdocument = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkeduvocdocument-16.04.3.tar.xz"; + sha256 = "0ajfk2yzqp1rjxllrvknhwkxv16d40fi9m24gk7j0ma19fd90xg0"; + name = "libkeduvocdocument-16.04.3.tar.xz"; + }; + }; + libkexiv2 = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkexiv2-16.04.3.tar.xz"; + sha256 = "00v09mz8v7z1pan8r4qvgmsi7kyr8pmim0km88jdf3mcaswk6mia"; + name = "libkexiv2-16.04.3.tar.xz"; + }; + }; + libkface = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkface-16.04.3.tar.xz"; + sha256 = "0mx706gcjb9zvi32lmlk6mp93vk6pwkb5598nm4a0qcmfdnxfdsp"; + name = "libkface-16.04.3.tar.xz"; + }; + }; + libkgeomap = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkgeomap-16.04.3.tar.xz"; + sha256 = "0m5frrk6hyjzmhq7lqzx8sila9vhbxhhnlp1rwsv3gwnyq0lpf5w"; + name = "libkgeomap-16.04.3.tar.xz"; + }; + }; + libkipi = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkipi-16.04.3.tar.xz"; + sha256 = "17hhs1lwckx4zgv10f8pw2y3g2arldxz5zzqi5yzf0g9zzqgv0y6"; + name = "libkipi-16.04.3.tar.xz"; + }; + }; + libkleo = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkleo-16.04.3.tar.xz"; + sha256 = "1989kr8yp6s7apxgd7jb1g4ims3gff7kp6z3ywkriv27h1wq0ym3"; + name = "libkleo-16.04.3.tar.xz"; + }; + }; + libkmahjongg = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkmahjongg-16.04.3.tar.xz"; + sha256 = "01lp82lyf71h7570bfgfr3inw5hxm3xs6k819gpljsb6ywjxf426"; + name = "libkmahjongg-16.04.3.tar.xz"; + }; + }; + libkomparediff2 = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkomparediff2-16.04.3.tar.xz"; + sha256 = "0al466jm33mcmqwanf1mq34dqrk3dqzxpw847rfmax0npmwnsgs4"; + name = "libkomparediff2-16.04.3.tar.xz"; + }; + }; + libksane = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libksane-16.04.3.tar.xz"; + sha256 = "13rlpvg55ci2jcwsdl3hai9xicb41lgwsgnhpmzd1c7gpyf50c47"; + name = "libksane-16.04.3.tar.xz"; + }; + }; + libksieve = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libksieve-16.04.3.tar.xz"; + sha256 = "1s0mz0ndchhpaq9lzv9ml537w8mj42rvq97wxyl8hfsvcfkfkqyv"; + name = "libksieve-16.04.3.tar.xz"; + }; + }; + lokalize = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/lokalize-16.04.3.tar.xz"; + sha256 = "1f63yzb2c9hbiyylsa7jfccr40bxwwzmz65s8ny8w3rs481i6mi1"; + name = "lokalize-16.04.3.tar.xz"; + }; + }; + lskat = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/lskat-16.04.3.tar.xz"; + sha256 = "12xpds0nq6bbnmxvjqj3an0ji9nz698l0n0lncw37r6ijbf023my"; + name = "lskat-16.04.3.tar.xz"; + }; + }; + mailcommon = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/mailcommon-16.04.3.tar.xz"; + sha256 = "0zls1a7dvrprbjy9l7vhyd5qcpik7z8m6s27y31rdvzjic1vpxbp"; + name = "mailcommon-16.04.3.tar.xz"; + }; + }; + mailimporter = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/mailimporter-16.04.3.tar.xz"; + sha256 = "1w81mnnlfdq61q1q36qingwx1nsav160lw779xn9gdzb3i9ag7nz"; + name = "mailimporter-16.04.3.tar.xz"; + }; + }; + marble = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/marble-16.04.3.tar.xz"; + sha256 = "1jriyclkdrbi5qx9znjpkmcd9l7h2fz3265b61h49d981b7sngas"; + name = "marble-16.04.3.tar.xz"; + }; + }; + messagelib = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/messagelib-16.04.3.tar.xz"; + sha256 = "1mvjglnq8vxhrpi2nl7p78mj1idmfci5jbzv0mn15bjs4s4kld41"; + name = "messagelib-16.04.3.tar.xz"; + }; + }; + minuet = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/minuet-16.04.3.tar.xz"; + sha256 = "13sz0a5ayis3w9d5fk9hm5jlv87vvclqwpbij6wl8df2zrqh29w4"; + name = "minuet-16.04.3.tar.xz"; + }; + }; + mplayerthumbs = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/mplayerthumbs-16.04.3.tar.xz"; + sha256 = "01v4cc1y0rhzyxs7mhlvn1dmwgmnn8a5jn3lii6ydi2ln5s0kg7f"; + name = "mplayerthumbs-16.04.3.tar.xz"; + }; + }; + okteta = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/okteta-16.04.3.tar.xz"; + sha256 = "0qymdfyaa3zsfjbrm4scfqg53hmfvr3c747p6wj032b9kymy0d5h"; + name = "okteta-16.04.3.tar.xz"; + }; + }; + okular = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/okular-16.04.3.tar.xz"; + sha256 = "199q00ddqv53c6psm07xcnck9v5dmc89cj810gkkrbwwyb6r1mfd"; + name = "okular-16.04.3.tar.xz"; + }; + }; + palapeli = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/palapeli-16.04.3.tar.xz"; + sha256 = "1j2vvk98bkldq36x0kndyw7455q6kiwmg0gvhh18kn24arw1y2as"; + name = "palapeli-16.04.3.tar.xz"; + }; + }; + parley = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/parley-16.04.3.tar.xz"; + sha256 = "0ii0nh1m6ggza32brx6iwvl3cqsya6z2znrlxs63sra1ihlv2m1y"; + name = "parley-16.04.3.tar.xz"; + }; + }; + picmi = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/picmi-16.04.3.tar.xz"; + sha256 = "0jsrpwgmq33510gj2flqqlhc6hwqlynsqzr883aqj9bsxc15ngil"; + name = "picmi-16.04.3.tar.xz"; + }; + }; + pimcommon = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/pimcommon-16.04.3.tar.xz"; + sha256 = "0f5jrrdih18ar3ac43bqr3i2mqciil04aag66032izrfy4fvmp3f"; + name = "pimcommon-16.04.3.tar.xz"; + }; + }; + poxml = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/poxml-16.04.3.tar.xz"; + sha256 = "0cv6kdrhmx7m2xg0cmrc4mifwayfvlc9vpiigwzs6928xy7ffyzn"; + name = "poxml-16.04.3.tar.xz"; + }; + }; + print-manager = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/print-manager-16.04.3.tar.xz"; + sha256 = "1kh4malrlfchcmph9d8h1h9ljffjg8d1pfjil6gfprc6z877lmww"; + name = "print-manager-16.04.3.tar.xz"; + }; + }; + rocs = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/rocs-16.04.3.tar.xz"; + sha256 = "1xh9hzg6kl2mcgp7yjdx2rffalis4fp6y4166s527ikjqxvwr2xw"; + name = "rocs-16.04.3.tar.xz"; + }; + }; + signon-kwallet-extension = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/signon-kwallet-extension-16.04.3.tar.xz"; + sha256 = "015ps8zpbn15ml1s3qjwbpsf7md4sxn8232x2nl68nzv06n0bsx5"; + name = "signon-kwallet-extension-16.04.3.tar.xz"; + }; + }; + spectacle = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/spectacle-16.04.3.tar.xz"; + sha256 = "0pxals99p5wj40x84g98rxy6g5y7jqg7x2dsw1pc8nci6l0x6p4w"; + name = "spectacle-16.04.3.tar.xz"; + }; + }; + step = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/step-16.04.3.tar.xz"; + sha256 = "1rybd7apzp9ky094325qcgmhgwns8vvsvz6y17injxqjcwk25bxp"; + name = "step-16.04.3.tar.xz"; + }; + }; + svgpart = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/svgpart-16.04.3.tar.xz"; + sha256 = "17xnhf9g3qcyra8h5jvvmw6gavv25lm9x57j9vl0fhfrc7s398sq"; + name = "svgpart-16.04.3.tar.xz"; + }; + }; + sweeper = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/sweeper-16.04.3.tar.xz"; + sha256 = "1xx7im8kz08cmddy1n52ndxz67yiawabm9pyacjssr3nrs82imrh"; + name = "sweeper-16.04.3.tar.xz"; + }; + }; + syndication = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/syndication-16.04.3.tar.xz"; + sha256 = "036wpmqkqdry6gaxf56f1yc9vn41lwmkgxdslyb7r7y0g5mxlyr5"; + name = "syndication-16.04.3.tar.xz"; + }; + }; + umbrello = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/umbrello-16.04.3.tar.xz"; + sha256 = "05gphjb35if4882gf79vqpdpkifzp50v7g0hpbarx01b00ijb00i"; + name = "umbrello-16.04.3.tar.xz"; + }; + }; + zeroconf-ioslave = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/zeroconf-ioslave-16.04.3.tar.xz"; + sha256 = "11bj016v0lppdqpasvqrqgljdbykar8bh1q0gwwykxh1zhk932jb"; + name = "zeroconf-ioslave-16.04.3.tar.xz"; + }; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6f06b05c156..93db1f924ee 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16182,7 +16182,7 @@ in let frameworks = import ../desktops/kde-5/frameworks-5.24 { inherit pkgs; }; plasma = import ../desktops/kde-5/plasma { inherit pkgs; }; - applications = import ../desktops/kde-5/applications-16.04 { inherit pkgs; }; + applications = import ../desktops/kde-5/applications { inherit pkgs; }; merged = self: { plasma = plasma self; frameworks = frameworks self; From 3eb9b19d3b03b095fbed3be224659311f9429819 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 13 Jul 2016 13:49:56 -0500 Subject: [PATCH 048/123] kde5.frameworks: remove version from directory name Now that we keep only one version of Frameworks in Nixpkgs, it is not necessary to version the directory which stores the Nix expressions. --- pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/attica.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/baloo.nix | 0 .../desktops/kde-5/{frameworks-5.24 => frameworks}/bluez-qt.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/breeze-icons.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/default.nix | 2 +- .../extra-cmake-modules/default.nix | 0 .../extra-cmake-modules/nix-lib-path.patch | 0 .../{frameworks-5.24 => frameworks}/extra-cmake-modules/series | 0 .../extra-cmake-modules/setup-hook.sh | 0 .../{frameworks-5.24 => frameworks}/frameworkintegration.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kactivities-stats.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kactivities.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kapidox.nix | 0 .../desktops/kde-5/{frameworks-5.24 => frameworks}/karchive.nix | 0 .../kauth/cmake-install-paths.patch | 0 .../kde-5/{frameworks-5.24 => frameworks}/kauth/default.nix | 0 .../desktops/kde-5/{frameworks-5.24 => frameworks}/kauth/series | 0 .../kde-5/{frameworks-5.24 => frameworks}/kbookmarks.nix | 0 .../kcmutils/0001-qdiriterator-follow-symlinks.patch | 0 .../kde-5/{frameworks-5.24 => frameworks}/kcmutils/default.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kcodecs.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kcompletion.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kconfig.nix | 0 .../kconfigwidgets/0001-qdiriterator-follow-symlinks.patch | 0 .../{frameworks-5.24 => frameworks}/kconfigwidgets/default.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kcoreaddons.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kcrash.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kdbusaddons.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kdeclarative.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kded.nix | 0 .../{frameworks-5.24 => frameworks}/kdelibs4support/default.nix | 0 .../kdelibs4support/nix-kde-include-dir.patch | 0 .../{frameworks-5.24 => frameworks}/kdelibs4support/series | 0 .../kdelibs4support/setup-hook.sh | 0 .../kde-5/{frameworks-5.24 => frameworks}/kdesignerplugin.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdesu.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdnssd.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kdoctools/default.nix | 0 .../kdoctools/kdoctools-no-find-docbook-xml.patch | 0 .../{frameworks-5.24 => frameworks}/kdoctools/setup-hook.sh | 0 .../kde-5/{frameworks-5.24 => frameworks}/kemoticons.nix | 0 .../kfilemetadata/cmake-install-paths.patch | 0 .../{frameworks-5.24 => frameworks}/kfilemetadata/default.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kfilemetadata/series | 0 .../kde-5/{frameworks-5.24 => frameworks}/kglobalaccel.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kguiaddons.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/khtml.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/ki18n.nix | 0 .../kiconthemes/default-theme-breeze.patch | 0 .../{frameworks-5.24 => frameworks}/kiconthemes/default.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kiconthemes/series | 0 .../kde-5/{frameworks-5.24 => frameworks}/kidletime.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kimageformats.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kinit/default.nix | 0 .../{frameworks-5.24 => frameworks}/kinit/kinit-libpath.patch | 0 .../desktops/kde-5/{frameworks-5.24 => frameworks}/kinit/series | 0 .../kde-5/{frameworks-5.24 => frameworks}/kio/default.nix | 0 .../{frameworks-5.24 => frameworks}/kio/samba-search-path.patch | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kio/series | 0 .../kde-5/{frameworks-5.24 => frameworks}/kitemmodels.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kitemviews.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kjobwidgets.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kjs.nix | 0 .../desktops/kde-5/{frameworks-5.24 => frameworks}/kjsembed.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kmediaplayer.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/knewstuff.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/knotifications.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/knotifyconfig.nix | 0 .../kpackage/allow-external-paths.patch | 0 .../kde-5/{frameworks-5.24 => frameworks}/kpackage/default.nix | 0 .../kpackage/qdiriterator-follow-symlinks.patch | 0 .../kde-5/{frameworks-5.24 => frameworks}/kpackage/series | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kparts.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kpeople.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kplotting.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kpty.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kross.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/krunner.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kservice/default.nix | 0 .../kservice/no-canonicalize-path.patch | 0 .../kservice/qdiriterator-follow-symlinks.patch | 0 .../kde-5/{frameworks-5.24 => frameworks}/kservice/series | 0 .../{frameworks-5.24 => frameworks}/kservice/setup-hook.sh | 0 .../{frameworks-5.24 => frameworks}/ktexteditor/default.nix | 0 .../ktexteditor/no-qcoreapplication.patch | 0 .../kde-5/{frameworks-5.24 => frameworks}/ktexteditor/series | 0 .../kde-5/{frameworks-5.24 => frameworks}/ktextwidgets.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kunitconversion.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kwallet.nix | 0 .../desktops/kde-5/{frameworks-5.24 => frameworks}/kwayland.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kwidgetsaddons.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kwindowsystem.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kxmlgui.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kxmlrpcclient.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/modemmanager-qt.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/networkmanager-qt.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/oxygen-icons5.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/plasma-framework.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/solid.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/sonnet.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/srcs.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/threadweaver.nix | 0 pkgs/top-level/all-packages.nix | 2 +- 103 files changed, 2 insertions(+), 2 deletions(-) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/attica.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/baloo.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/bluez-qt.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/breeze-icons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/default.nix (99%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/extra-cmake-modules/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/extra-cmake-modules/nix-lib-path.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/extra-cmake-modules/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/extra-cmake-modules/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/frameworkintegration.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kactivities-stats.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kactivities.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kapidox.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/karchive.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kauth/cmake-install-paths.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kauth/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kauth/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kbookmarks.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kcmutils/0001-qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kcmutils/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kcodecs.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kcompletion.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kconfig.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kconfigwidgets/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kcoreaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kcrash.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdbusaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdeclarative.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kded.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdelibs4support/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdelibs4support/nix-kde-include-dir.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdelibs4support/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdelibs4support/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdesignerplugin.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdesu.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdnssd.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdoctools/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdoctools/kdoctools-no-find-docbook-xml.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdoctools/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kemoticons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kfilemetadata/cmake-install-paths.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kfilemetadata/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kfilemetadata/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kglobalaccel.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kguiaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/khtml.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/ki18n.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kiconthemes/default-theme-breeze.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kiconthemes/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kiconthemes/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kidletime.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kimageformats.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kinit/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kinit/kinit-libpath.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kinit/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kio/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kio/samba-search-path.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kio/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kitemmodels.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kitemviews.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kjobwidgets.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kjs.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kjsembed.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kmediaplayer.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/knewstuff.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/knotifications.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/knotifyconfig.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kpackage/allow-external-paths.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kpackage/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kpackage/qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kpackage/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kparts.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kpeople.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kplotting.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kpty.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kross.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/krunner.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kservice/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kservice/no-canonicalize-path.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kservice/qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kservice/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kservice/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/ktexteditor/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/ktexteditor/no-qcoreapplication.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/ktexteditor/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/ktextwidgets.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kunitconversion.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kwallet.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kwayland.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kwidgetsaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kwindowsystem.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kxmlgui.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kxmlrpcclient.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/modemmanager-qt.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/networkmanager-qt.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/oxygen-icons5.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/plasma-framework.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/solid.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/sonnet.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/srcs.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/threadweaver.nix (100%) diff --git a/pkgs/desktops/kde-5/frameworks-5.24/attica.nix b/pkgs/desktops/kde-5/frameworks/attica.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/attica.nix rename to pkgs/desktops/kde-5/frameworks/attica.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/baloo.nix b/pkgs/desktops/kde-5/frameworks/baloo.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/baloo.nix rename to pkgs/desktops/kde-5/frameworks/baloo.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/bluez-qt.nix b/pkgs/desktops/kde-5/frameworks/bluez-qt.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/bluez-qt.nix rename to pkgs/desktops/kde-5/frameworks/bluez-qt.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/breeze-icons.nix b/pkgs/desktops/kde-5/frameworks/breeze-icons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/breeze-icons.nix rename to pkgs/desktops/kde-5/frameworks/breeze-icons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/default.nix b/pkgs/desktops/kde-5/frameworks/default.nix similarity index 99% rename from pkgs/desktops/kde-5/frameworks-5.24/default.nix rename to pkgs/desktops/kde-5/frameworks/default.nix index 851c142fe2d..1a8f08bde44 100644 --- a/pkgs/desktops/kde-5/frameworks-5.24/default.nix +++ b/pkgs/desktops/kde-5/frameworks/default.nix @@ -7,7 +7,7 @@ keep the old version around for a short time after major updates.) 1. Update the URL in `maintainers/scripts/generate-kde-frameworks.sh`. 2. From the top of the Nixpkgs tree, run - `./maintainers/scripts/generate-kde-frameworks.sh > pkgs/desktops/kde-5/frameworks-$VERSION/srcs.nix'. + `./maintainers/scripts/generate-kde-frameworks.sh > pkgs/desktops/kde-5/frameworks/srcs.nix'. 3. Check that the new packages build correctly. 4. Commit the changes and open a pull request. diff --git a/pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/default.nix b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/default.nix rename to pkgs/desktops/kde-5/frameworks/extra-cmake-modules/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/nix-lib-path.patch b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/nix-lib-path.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/nix-lib-path.patch rename to pkgs/desktops/kde-5/frameworks/extra-cmake-modules/nix-lib-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/series b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/series rename to pkgs/desktops/kde-5/frameworks/extra-cmake-modules/series diff --git a/pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/setup-hook.sh b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/setup-hook.sh rename to pkgs/desktops/kde-5/frameworks/extra-cmake-modules/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.24/frameworkintegration.nix b/pkgs/desktops/kde-5/frameworks/frameworkintegration.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/frameworkintegration.nix rename to pkgs/desktops/kde-5/frameworks/frameworkintegration.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kactivities-stats.nix b/pkgs/desktops/kde-5/frameworks/kactivities-stats.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kactivities-stats.nix rename to pkgs/desktops/kde-5/frameworks/kactivities-stats.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kactivities.nix b/pkgs/desktops/kde-5/frameworks/kactivities.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kactivities.nix rename to pkgs/desktops/kde-5/frameworks/kactivities.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kapidox.nix b/pkgs/desktops/kde-5/frameworks/kapidox.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kapidox.nix rename to pkgs/desktops/kde-5/frameworks/kapidox.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/karchive.nix b/pkgs/desktops/kde-5/frameworks/karchive.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/karchive.nix rename to pkgs/desktops/kde-5/frameworks/karchive.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kauth/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks/kauth/cmake-install-paths.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kauth/cmake-install-paths.patch rename to pkgs/desktops/kde-5/frameworks/kauth/cmake-install-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kauth/default.nix b/pkgs/desktops/kde-5/frameworks/kauth/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kauth/default.nix rename to pkgs/desktops/kde-5/frameworks/kauth/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kauth/series b/pkgs/desktops/kde-5/frameworks/kauth/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kauth/series rename to pkgs/desktops/kde-5/frameworks/kauth/series diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kbookmarks.nix b/pkgs/desktops/kde-5/frameworks/kbookmarks.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kbookmarks.nix rename to pkgs/desktops/kde-5/frameworks/kbookmarks.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kcmutils/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks/kcmutils/0001-qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kcmutils/0001-qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/frameworks/kcmutils/0001-qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kcmutils/default.nix b/pkgs/desktops/kde-5/frameworks/kcmutils/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kcmutils/default.nix rename to pkgs/desktops/kde-5/frameworks/kcmutils/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kcodecs.nix b/pkgs/desktops/kde-5/frameworks/kcodecs.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kcodecs.nix rename to pkgs/desktops/kde-5/frameworks/kcodecs.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kcompletion.nix b/pkgs/desktops/kde-5/frameworks/kcompletion.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kcompletion.nix rename to pkgs/desktops/kde-5/frameworks/kcompletion.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kconfig.nix b/pkgs/desktops/kde-5/frameworks/kconfig.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kconfig.nix rename to pkgs/desktops/kde-5/frameworks/kconfig.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/frameworks/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kconfigwidgets/default.nix b/pkgs/desktops/kde-5/frameworks/kconfigwidgets/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kconfigwidgets/default.nix rename to pkgs/desktops/kde-5/frameworks/kconfigwidgets/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kcoreaddons.nix b/pkgs/desktops/kde-5/frameworks/kcoreaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kcoreaddons.nix rename to pkgs/desktops/kde-5/frameworks/kcoreaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kcrash.nix b/pkgs/desktops/kde-5/frameworks/kcrash.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kcrash.nix rename to pkgs/desktops/kde-5/frameworks/kcrash.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdbusaddons.nix b/pkgs/desktops/kde-5/frameworks/kdbusaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdbusaddons.nix rename to pkgs/desktops/kde-5/frameworks/kdbusaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdeclarative.nix b/pkgs/desktops/kde-5/frameworks/kdeclarative.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdeclarative.nix rename to pkgs/desktops/kde-5/frameworks/kdeclarative.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kded.nix b/pkgs/desktops/kde-5/frameworks/kded.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kded.nix rename to pkgs/desktops/kde-5/frameworks/kded.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/default.nix b/pkgs/desktops/kde-5/frameworks/kdelibs4support/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/default.nix rename to pkgs/desktops/kde-5/frameworks/kdelibs4support/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/nix-kde-include-dir.patch b/pkgs/desktops/kde-5/frameworks/kdelibs4support/nix-kde-include-dir.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/nix-kde-include-dir.patch rename to pkgs/desktops/kde-5/frameworks/kdelibs4support/nix-kde-include-dir.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/series b/pkgs/desktops/kde-5/frameworks/kdelibs4support/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/series rename to pkgs/desktops/kde-5/frameworks/kdelibs4support/series diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/setup-hook.sh b/pkgs/desktops/kde-5/frameworks/kdelibs4support/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/setup-hook.sh rename to pkgs/desktops/kde-5/frameworks/kdelibs4support/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdesignerplugin.nix b/pkgs/desktops/kde-5/frameworks/kdesignerplugin.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdesignerplugin.nix rename to pkgs/desktops/kde-5/frameworks/kdesignerplugin.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdesu.nix b/pkgs/desktops/kde-5/frameworks/kdesu.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdesu.nix rename to pkgs/desktops/kde-5/frameworks/kdesu.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdnssd.nix b/pkgs/desktops/kde-5/frameworks/kdnssd.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdnssd.nix rename to pkgs/desktops/kde-5/frameworks/kdnssd.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdoctools/default.nix b/pkgs/desktops/kde-5/frameworks/kdoctools/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdoctools/default.nix rename to pkgs/desktops/kde-5/frameworks/kdoctools/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdoctools/kdoctools-no-find-docbook-xml.patch b/pkgs/desktops/kde-5/frameworks/kdoctools/kdoctools-no-find-docbook-xml.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdoctools/kdoctools-no-find-docbook-xml.patch rename to pkgs/desktops/kde-5/frameworks/kdoctools/kdoctools-no-find-docbook-xml.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdoctools/setup-hook.sh b/pkgs/desktops/kde-5/frameworks/kdoctools/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdoctools/setup-hook.sh rename to pkgs/desktops/kde-5/frameworks/kdoctools/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kemoticons.nix b/pkgs/desktops/kde-5/frameworks/kemoticons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kemoticons.nix rename to pkgs/desktops/kde-5/frameworks/kemoticons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks/kfilemetadata/cmake-install-paths.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/cmake-install-paths.patch rename to pkgs/desktops/kde-5/frameworks/kfilemetadata/cmake-install-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/default.nix b/pkgs/desktops/kde-5/frameworks/kfilemetadata/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/default.nix rename to pkgs/desktops/kde-5/frameworks/kfilemetadata/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/series b/pkgs/desktops/kde-5/frameworks/kfilemetadata/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/series rename to pkgs/desktops/kde-5/frameworks/kfilemetadata/series diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kglobalaccel.nix b/pkgs/desktops/kde-5/frameworks/kglobalaccel.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kglobalaccel.nix rename to pkgs/desktops/kde-5/frameworks/kglobalaccel.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kguiaddons.nix b/pkgs/desktops/kde-5/frameworks/kguiaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kguiaddons.nix rename to pkgs/desktops/kde-5/frameworks/kguiaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/khtml.nix b/pkgs/desktops/kde-5/frameworks/khtml.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/khtml.nix rename to pkgs/desktops/kde-5/frameworks/khtml.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/ki18n.nix b/pkgs/desktops/kde-5/frameworks/ki18n.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/ki18n.nix rename to pkgs/desktops/kde-5/frameworks/ki18n.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/default-theme-breeze.patch b/pkgs/desktops/kde-5/frameworks/kiconthemes/default-theme-breeze.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/default-theme-breeze.patch rename to pkgs/desktops/kde-5/frameworks/kiconthemes/default-theme-breeze.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/default.nix b/pkgs/desktops/kde-5/frameworks/kiconthemes/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/default.nix rename to pkgs/desktops/kde-5/frameworks/kiconthemes/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/series b/pkgs/desktops/kde-5/frameworks/kiconthemes/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/series rename to pkgs/desktops/kde-5/frameworks/kiconthemes/series diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kidletime.nix b/pkgs/desktops/kde-5/frameworks/kidletime.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kidletime.nix rename to pkgs/desktops/kde-5/frameworks/kidletime.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kimageformats.nix b/pkgs/desktops/kde-5/frameworks/kimageformats.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kimageformats.nix rename to pkgs/desktops/kde-5/frameworks/kimageformats.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kinit/default.nix b/pkgs/desktops/kde-5/frameworks/kinit/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kinit/default.nix rename to pkgs/desktops/kde-5/frameworks/kinit/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kinit/kinit-libpath.patch b/pkgs/desktops/kde-5/frameworks/kinit/kinit-libpath.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kinit/kinit-libpath.patch rename to pkgs/desktops/kde-5/frameworks/kinit/kinit-libpath.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kinit/series b/pkgs/desktops/kde-5/frameworks/kinit/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kinit/series rename to pkgs/desktops/kde-5/frameworks/kinit/series diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kio/default.nix b/pkgs/desktops/kde-5/frameworks/kio/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kio/default.nix rename to pkgs/desktops/kde-5/frameworks/kio/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kio/samba-search-path.patch b/pkgs/desktops/kde-5/frameworks/kio/samba-search-path.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kio/samba-search-path.patch rename to pkgs/desktops/kde-5/frameworks/kio/samba-search-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kio/series b/pkgs/desktops/kde-5/frameworks/kio/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kio/series rename to pkgs/desktops/kde-5/frameworks/kio/series diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kitemmodels.nix b/pkgs/desktops/kde-5/frameworks/kitemmodels.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kitemmodels.nix rename to pkgs/desktops/kde-5/frameworks/kitemmodels.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kitemviews.nix b/pkgs/desktops/kde-5/frameworks/kitemviews.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kitemviews.nix rename to pkgs/desktops/kde-5/frameworks/kitemviews.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kjobwidgets.nix b/pkgs/desktops/kde-5/frameworks/kjobwidgets.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kjobwidgets.nix rename to pkgs/desktops/kde-5/frameworks/kjobwidgets.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kjs.nix b/pkgs/desktops/kde-5/frameworks/kjs.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kjs.nix rename to pkgs/desktops/kde-5/frameworks/kjs.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kjsembed.nix b/pkgs/desktops/kde-5/frameworks/kjsembed.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kjsembed.nix rename to pkgs/desktops/kde-5/frameworks/kjsembed.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kmediaplayer.nix b/pkgs/desktops/kde-5/frameworks/kmediaplayer.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kmediaplayer.nix rename to pkgs/desktops/kde-5/frameworks/kmediaplayer.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/knewstuff.nix b/pkgs/desktops/kde-5/frameworks/knewstuff.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/knewstuff.nix rename to pkgs/desktops/kde-5/frameworks/knewstuff.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/knotifications.nix b/pkgs/desktops/kde-5/frameworks/knotifications.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/knotifications.nix rename to pkgs/desktops/kde-5/frameworks/knotifications.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/knotifyconfig.nix b/pkgs/desktops/kde-5/frameworks/knotifyconfig.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/knotifyconfig.nix rename to pkgs/desktops/kde-5/frameworks/knotifyconfig.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kpackage/allow-external-paths.patch b/pkgs/desktops/kde-5/frameworks/kpackage/allow-external-paths.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kpackage/allow-external-paths.patch rename to pkgs/desktops/kde-5/frameworks/kpackage/allow-external-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kpackage/default.nix b/pkgs/desktops/kde-5/frameworks/kpackage/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kpackage/default.nix rename to pkgs/desktops/kde-5/frameworks/kpackage/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kpackage/qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks/kpackage/qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kpackage/qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/frameworks/kpackage/qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kpackage/series b/pkgs/desktops/kde-5/frameworks/kpackage/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kpackage/series rename to pkgs/desktops/kde-5/frameworks/kpackage/series diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kparts.nix b/pkgs/desktops/kde-5/frameworks/kparts.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kparts.nix rename to pkgs/desktops/kde-5/frameworks/kparts.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kpeople.nix b/pkgs/desktops/kde-5/frameworks/kpeople.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kpeople.nix rename to pkgs/desktops/kde-5/frameworks/kpeople.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kplotting.nix b/pkgs/desktops/kde-5/frameworks/kplotting.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kplotting.nix rename to pkgs/desktops/kde-5/frameworks/kplotting.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kpty.nix b/pkgs/desktops/kde-5/frameworks/kpty.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kpty.nix rename to pkgs/desktops/kde-5/frameworks/kpty.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kross.nix b/pkgs/desktops/kde-5/frameworks/kross.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kross.nix rename to pkgs/desktops/kde-5/frameworks/kross.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/krunner.nix b/pkgs/desktops/kde-5/frameworks/krunner.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/krunner.nix rename to pkgs/desktops/kde-5/frameworks/krunner.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kservice/default.nix b/pkgs/desktops/kde-5/frameworks/kservice/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kservice/default.nix rename to pkgs/desktops/kde-5/frameworks/kservice/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kservice/no-canonicalize-path.patch b/pkgs/desktops/kde-5/frameworks/kservice/no-canonicalize-path.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kservice/no-canonicalize-path.patch rename to pkgs/desktops/kde-5/frameworks/kservice/no-canonicalize-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kservice/qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks/kservice/qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kservice/qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/frameworks/kservice/qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kservice/series b/pkgs/desktops/kde-5/frameworks/kservice/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kservice/series rename to pkgs/desktops/kde-5/frameworks/kservice/series diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kservice/setup-hook.sh b/pkgs/desktops/kde-5/frameworks/kservice/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kservice/setup-hook.sh rename to pkgs/desktops/kde-5/frameworks/kservice/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/default.nix b/pkgs/desktops/kde-5/frameworks/ktexteditor/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/default.nix rename to pkgs/desktops/kde-5/frameworks/ktexteditor/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/no-qcoreapplication.patch b/pkgs/desktops/kde-5/frameworks/ktexteditor/no-qcoreapplication.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/no-qcoreapplication.patch rename to pkgs/desktops/kde-5/frameworks/ktexteditor/no-qcoreapplication.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/series b/pkgs/desktops/kde-5/frameworks/ktexteditor/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/series rename to pkgs/desktops/kde-5/frameworks/ktexteditor/series diff --git a/pkgs/desktops/kde-5/frameworks-5.24/ktextwidgets.nix b/pkgs/desktops/kde-5/frameworks/ktextwidgets.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/ktextwidgets.nix rename to pkgs/desktops/kde-5/frameworks/ktextwidgets.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kunitconversion.nix b/pkgs/desktops/kde-5/frameworks/kunitconversion.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kunitconversion.nix rename to pkgs/desktops/kde-5/frameworks/kunitconversion.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kwallet.nix b/pkgs/desktops/kde-5/frameworks/kwallet.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kwallet.nix rename to pkgs/desktops/kde-5/frameworks/kwallet.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kwayland.nix b/pkgs/desktops/kde-5/frameworks/kwayland.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kwayland.nix rename to pkgs/desktops/kde-5/frameworks/kwayland.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kwidgetsaddons.nix b/pkgs/desktops/kde-5/frameworks/kwidgetsaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kwidgetsaddons.nix rename to pkgs/desktops/kde-5/frameworks/kwidgetsaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kwindowsystem.nix b/pkgs/desktops/kde-5/frameworks/kwindowsystem.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kwindowsystem.nix rename to pkgs/desktops/kde-5/frameworks/kwindowsystem.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kxmlgui.nix b/pkgs/desktops/kde-5/frameworks/kxmlgui.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kxmlgui.nix rename to pkgs/desktops/kde-5/frameworks/kxmlgui.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kxmlrpcclient.nix b/pkgs/desktops/kde-5/frameworks/kxmlrpcclient.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kxmlrpcclient.nix rename to pkgs/desktops/kde-5/frameworks/kxmlrpcclient.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/modemmanager-qt.nix b/pkgs/desktops/kde-5/frameworks/modemmanager-qt.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/modemmanager-qt.nix rename to pkgs/desktops/kde-5/frameworks/modemmanager-qt.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/networkmanager-qt.nix b/pkgs/desktops/kde-5/frameworks/networkmanager-qt.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/networkmanager-qt.nix rename to pkgs/desktops/kde-5/frameworks/networkmanager-qt.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/oxygen-icons5.nix b/pkgs/desktops/kde-5/frameworks/oxygen-icons5.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/oxygen-icons5.nix rename to pkgs/desktops/kde-5/frameworks/oxygen-icons5.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/plasma-framework.nix b/pkgs/desktops/kde-5/frameworks/plasma-framework.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/plasma-framework.nix rename to pkgs/desktops/kde-5/frameworks/plasma-framework.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/solid.nix b/pkgs/desktops/kde-5/frameworks/solid.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/solid.nix rename to pkgs/desktops/kde-5/frameworks/solid.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/sonnet.nix b/pkgs/desktops/kde-5/frameworks/sonnet.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/sonnet.nix rename to pkgs/desktops/kde-5/frameworks/sonnet.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/srcs.nix b/pkgs/desktops/kde-5/frameworks/srcs.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/srcs.nix rename to pkgs/desktops/kde-5/frameworks/srcs.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/threadweaver.nix b/pkgs/desktops/kde-5/frameworks/threadweaver.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/threadweaver.nix rename to pkgs/desktops/kde-5/frameworks/threadweaver.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 93db1f924ee..128fe8b9777 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16180,7 +16180,7 @@ in kde5 = let - frameworks = import ../desktops/kde-5/frameworks-5.24 { inherit pkgs; }; + frameworks = import ../desktops/kde-5/frameworks { inherit pkgs; }; plasma = import ../desktops/kde-5/plasma { inherit pkgs; }; applications = import ../desktops/kde-5/applications { inherit pkgs; }; merged = self: From 5630ac1d928ec9d1d773f4dccc5b24031fc8dae3 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 13 Jul 2016 13:52:25 -0500 Subject: [PATCH 049/123] generate-kde-frameworks.sh: fix helper script path - Fix a bug in the script which prevented it from finding its helper script. - Automatically redirect the output of the script to make it even easier to use. --- maintainers/scripts/generate-kde-frameworks.sh | 4 +++- pkgs/desktops/kde-5/frameworks/default.nix | 12 ++++-------- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/maintainers/scripts/generate-kde-frameworks.sh b/maintainers/scripts/generate-kde-frameworks.sh index e690662b3f2..b3b559b3571 100755 --- a/maintainers/scripts/generate-kde-frameworks.sh +++ b/maintainers/scripts/generate-kde-frameworks.sh @@ -1,3 +1,5 @@ #!/bin/sh -./fetch-kde-qt.sh http://download.kde.org/stable/frameworks/5.24/ -A '*.tar.xz' +./maintainers/scripts/fetch-kde-qt.sh \ + http://download.kde.org/stable/frameworks/5.24/ -A '*.tar.xz' \ + >pkgs/desktops/kde-5/frameworks/srcs.nix diff --git a/pkgs/desktops/kde-5/frameworks/default.nix b/pkgs/desktops/kde-5/frameworks/default.nix index 1a8f08bde44..bff2b394038 100644 --- a/pkgs/desktops/kde-5/frameworks/default.nix +++ b/pkgs/desktops/kde-5/frameworks/default.nix @@ -2,14 +2,10 @@ # Updates -Before a major version update, make a copy of this directory. (We like to -keep the old version around for a short time after major updates.) - -1. Update the URL in `maintainers/scripts/generate-kde-frameworks.sh`. -2. From the top of the Nixpkgs tree, run - `./maintainers/scripts/generate-kde-frameworks.sh > pkgs/desktops/kde-5/frameworks/srcs.nix'. -3. Check that the new packages build correctly. -4. Commit the changes and open a pull request. +1. Update the URL in `maintainers/scripts/generate-kde-frameworks.sh` and + run that script from the top of the Nixpkgs tree. +2. Check that the new packages build correctly. +3. Commit the changes and open a pull request. */ From 697f0df394c728c27643251aa1d50356ab5774f9 Mon Sep 17 00:00:00 2001 From: Ram Kromberg Date: Thu, 7 Jul 2016 15:46:26 +0300 Subject: [PATCH 050/123] lenmus: init at 5.4.1 --- pkgs/applications/misc/lenmus/default.nix | 50 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 51 insertions(+) create mode 100644 pkgs/applications/misc/lenmus/default.nix diff --git a/pkgs/applications/misc/lenmus/default.nix b/pkgs/applications/misc/lenmus/default.nix new file mode 100644 index 00000000000..976563d1185 --- /dev/null +++ b/pkgs/applications/misc/lenmus/default.nix @@ -0,0 +1,50 @@ +{ stdenv, pkgconfig, fetchFromGitHub +, cmake, boost +, portmidi, sqlite +, freetype, libpng, pngpp, zlib +, wxGTK30, wxsqlite3 +}: + +stdenv.mkDerivation rec { + name = "lenmus-${version}"; + version = "5.4.1"; + + src = fetchFromGitHub { + owner = "lenmus"; + repo = "lenmus"; + rev = "Release_${version}"; + sha256 = "03xar8x38x20cns2gnv34jp0hw0k16sa62kkfhka9iiiw90wfyrp"; + }; + + postPatch = '' + substituteInPlace CMakeLists.txt \ + --replace "DESTINATION \"/usr/share" "DESTINATION \"$out/share" + ''; + + cmakeFlags = [ + "-DCMAKE_INSALL_PREFIX=$out" + ]; + + enableParallelBuilding = true; + + buildInputs = [ + pkgconfig + cmake boost + portmidi sqlite + freetype libpng pngpp zlib + wxGTK30 wxsqlite3 + ]; + + meta = with stdenv.lib; { + description = "LenMus Phonascus is a program for learning music"; + longDescription = '' + LenMus Phonascus is a free open source program (GPL v3) for learning music. + It allows you to focus on specific skills and exercises, on both theory and aural training. + The different activities can be customized to meet your needs + ''; + homepage = "http://www.lenmus.org/"; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ ramkromberg ]; + platforms = with platforms; linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 128fe8b9777..385fe782d25 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6415,6 +6415,7 @@ in lemon = callPackage ../development/tools/parsing/lemon { }; + lenmus = callPackage ../applications/misc/lenmus { }; libtool = self.libtool_2; From c6f99a3a92f6ba21bd32f68efb186776df80a737 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Thu, 14 Jul 2016 04:15:11 +0900 Subject: [PATCH 051/123] wireguard: split module and tools (#16883) --- pkgs/os-specific/linux/wireguard/default.nix | 57 +++++++++++++------- pkgs/top-level/all-packages.nix | 4 +- 2 files changed, 42 insertions(+), 19 deletions(-) diff --git a/pkgs/os-specific/linux/wireguard/default.nix b/pkgs/os-specific/linux/wireguard/default.nix index 5328743d8b8..3e5f6ae7480 100644 --- a/pkgs/os-specific/linux/wireguard/default.nix +++ b/pkgs/os-specific/linux/wireguard/default.nix @@ -1,7 +1,8 @@ -{ stdenv, fetchgit, libmnl, kernel }: +{ stdenv, fetchgit, libmnl, kernel ? null }: -stdenv.mkDerivation rec { +let name = "wireguard-${version}"; + version = "20160708"; src = fetchgit { @@ -10,25 +11,45 @@ stdenv.mkDerivation rec { sha256 = "1ciyjpp8c3fv95y1cypk9qyqynp8cqyh2676afq2hd33110d37ni"; }; - preConfigure = '' - cd src - sed -i /depmod/d Makefile - ''; - - buildInputs = [ libmnl ]; - - KERNELDIR = "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"; - - makeFlags = [ - "DESTDIR=$(out)" - "PREFIX=/" - "INSTALL_MOD_PATH=$(out)" - ]; - meta = with stdenv.lib; { homepage = https://www.wireguard.io/; description = "Fast, modern, secure VPN tunnel"; license = licenses.gpl2; platforms = platforms.linux; }; -} + + module = stdenv.mkDerivation { + inherit src meta name; + + preConfigure = '' + cd src + sed -i '/depmod/,+1d' Makefile + ''; + + KERNELDIR = "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"; + INSTALL_MOD_PATH = "\${out}"; + + buildPhase = "make module"; + + }; + + tools = stdenv.mkDerivation { + inherit src meta name; + + preConfigure = "cd src"; + + buildInputs = [ libmnl ]; + + makeFlags = [ + "DESTDIR=$(out)" + "PREFIX=/" + "-C" "tools" + ]; + + buildPhase = "make tools"; + + }; + +in if kernel == null + then tools + else module diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 128fe8b9777..b6e795740f2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11132,7 +11132,7 @@ in virtualboxGuestAdditions = callPackage ../applications/virtualization/virtualbox/guest-additions { }; - wireguard = callPackage ../os-specific/linux/wireguard {}; + wireguard = callPackage ../os-specific/linux/wireguard { }; x86_energy_perf_policy = callPackage ../os-specific/linux/x86_energy_perf_policy { }; @@ -14911,6 +14911,8 @@ in wings = callPackage ../applications/graphics/wings { }; + wireguard = callPackage ../os-specific/linux/wireguard { }; + wmname = callPackage ../applications/misc/wmname { }; wmctrl = callPackage ../tools/X11/wmctrl { }; From 19a4935c5513575b8f1368f897f8721cbf2ddb4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 13 Jul 2016 22:36:54 +0200 Subject: [PATCH 052/123] gnutls: fix up yet again Noticed on: https://github.com/NixOS/nixpkgs/commit/7d94f57309a4#commitcomment-18221038 Hopefully OK finally, evaluation tested on x86_64-{linux,darwin}. Apparently I'm trying to contribute in situations I'd better be relaxing already. --- pkgs/development/libraries/gnutls/generic.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/gnutls/generic.nix b/pkgs/development/libraries/gnutls/generic.nix index 7cd8267192b..9866dd9fd3a 100644 --- a/pkgs/development/libraries/gnutls/generic.nix +++ b/pkgs/development/libraries/gnutls/generic.nix @@ -39,7 +39,8 @@ stdenv.mkDerivation { # for the actual fix. enableParallelBuilding = !guileBindings; - buildInputs = [ lzo lzip nettle libtasn1 libidn p11_kit zlib gmp autogen nettools ] + buildInputs = [ lzo lzip nettle libtasn1 libidn p11_kit zlib gmp autogen ] + ++ lib.optional doCheck nettools ++ lib.optional (stdenv.isFreeBSD || stdenv.isDarwin) libiconv ++ lib.optional (tpmSupport && stdenv.isLinux) trousers ++ [ unbound ] From 4b3f87ff81de2ee5a39c71bf090a92349a4deba7 Mon Sep 17 00:00:00 2001 From: "Rommel M. Martinez" Date: Thu, 14 Jul 2016 08:04:41 +0800 Subject: [PATCH 053/123] emem: 0.2.15 -> 0.2.16 --- pkgs/applications/misc/emem/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/emem/default.nix b/pkgs/applications/misc/emem/default.nix index b2855e5a287..27736713024 100644 --- a/pkgs/applications/misc/emem/default.nix +++ b/pkgs/applications/misc/emem/default.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { pname = "emem"; - version = "0.2.15"; + version = "0.2.16"; name = "${pname}-${version}"; inherit jdk; src = fetchurl { url = "https://github.com/ebzzry/${pname}/releases/download/v${version}/${pname}.jar"; - sha256 = "0jj990syd9biq2awnjydi4x3p4hivigc522ds59hdf5wg4y2gg6c"; + sha256 = "1j6i40mcfwcx85zv0pxpwrqj0zy9s5qd7j63zdqf0lckkjvyrih9"; }; buildInputs = [ ]; From 48cf70c03e45bea5638d8b3959dfe6a009981b6d Mon Sep 17 00:00:00 2001 From: Karn Kallio Date: Wed, 13 Jul 2016 18:49:48 -0400 Subject: [PATCH 054/123] kde5.ark: remove obsolete patch --- .../applications/ark/0001-fix-start-from-plasma.patch | 10 ---------- pkgs/desktops/kde-5/applications/ark/default.nix | 3 --- 2 files changed, 13 deletions(-) delete mode 100644 pkgs/desktops/kde-5/applications/ark/0001-fix-start-from-plasma.patch diff --git a/pkgs/desktops/kde-5/applications/ark/0001-fix-start-from-plasma.patch b/pkgs/desktops/kde-5/applications/ark/0001-fix-start-from-plasma.patch deleted file mode 100644 index 7590e49c498..00000000000 --- a/pkgs/desktops/kde-5/applications/ark/0001-fix-start-from-plasma.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- a/app/org.kde.ark.desktop.cmake -+++ b/app/org.kde.ark.desktop.cmake -@@ -154,7 +154,6 @@ - Terminal=false - X-DBUS-StartupType=Multi - X-DBUS-ServiceName=org.kde.ark --X-KDE-HasTempFileOption=true - Categories=Qt;KDE;Utility;Archiving;Compression;X-KDE-Utilities-File; - InitialPreference=3 - Comment=Work with file archives diff --git a/pkgs/desktops/kde-5/applications/ark/default.nix b/pkgs/desktops/kde-5/applications/ark/default.nix index 4e68488b323..331c8c647ca 100644 --- a/pkgs/desktops/kde-5/applications/ark/default.nix +++ b/pkgs/desktops/kde-5/applications/ark/default.nix @@ -35,9 +35,6 @@ kdeApp { khtml ki18n kio karchive kconfig kcrash kdbusaddons kiconthemes kservice kpty kwidgetsaddons libarchive ]; - patches = [ - ./0001-fix-start-from-plasma.patch - ]; postInstall = '' wrapQtProgram "$out/bin/ark" \ --prefix PATH : "${PATH}" From 37fc141da355bd52bec27578d7ce6fd330e4994a Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Wed, 13 Jul 2016 17:46:34 -0700 Subject: [PATCH 055/123] glfw: 3.1.2 -> 3.2 --- pkgs/development/libraries/glfw/3.x.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/glfw/3.x.nix b/pkgs/development/libraries/glfw/3.x.nix index 681137cd590..3b015532ca8 100644 --- a/pkgs/development/libraries/glfw/3.x.nix +++ b/pkgs/development/libraries/glfw/3.x.nix @@ -3,14 +3,14 @@ }: stdenv.mkDerivation rec { - version = "3.1.2"; + version = "3.2"; name = "glfw-${version}"; src = fetchFromGitHub { owner = "glfw"; repo = "GLFW"; rev = "${version}"; - sha256 = "1aj1dfyyd0170gpz32j2xlqbvbsxwbg028xiqai3mqc44xfp10kw"; + sha256 = "0knqf40jij2z1mia091xqyky5r11r4qyh7b8172blrmgm9q23sl9"; }; enableParallelBuilding = true; From ea15a54ef2a7e9391708f3d5e76d1378f2341bc3 Mon Sep 17 00:00:00 2001 From: rushmorem Date: Thu, 7 Jul 2016 15:41:20 +0200 Subject: [PATCH 056/123] habitat: add an option to run in an FHS chroot `hab studio enter` as well as other `hab` commands that make use of the studio assume an FHS system when creating a chroot. See https://github.com/habitat-sh/habitat/issues/994 --- .../networking/cluster/habitat/chroot-env.nix | 9 +++++++++ pkgs/applications/networking/cluster/habitat/default.nix | 6 +++--- pkgs/top-level/all-packages.nix | 1 + 3 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 pkgs/applications/networking/cluster/habitat/chroot-env.nix diff --git a/pkgs/applications/networking/cluster/habitat/chroot-env.nix b/pkgs/applications/networking/cluster/habitat/chroot-env.nix new file mode 100644 index 00000000000..388477f96e8 --- /dev/null +++ b/pkgs/applications/networking/cluster/habitat/chroot-env.nix @@ -0,0 +1,9 @@ +# TODO: Drop once https://github.com/habitat-sh/habitat/issues/994 +# is resolved. +{ habitat, libsodium, libarchive, openssl, buildFHSUserEnv }: + +buildFHSUserEnv { + name = "hab"; + targetPkgs = pkgs: [ habitat libsodium libarchive openssl ]; + runScript = "bash"; +} diff --git a/pkgs/applications/networking/cluster/habitat/default.nix b/pkgs/applications/networking/cluster/habitat/default.nix index d806329e4ee..da82dac0019 100644 --- a/pkgs/applications/networking/cluster/habitat/default.nix +++ b/pkgs/applications/networking/cluster/habitat/default.nix @@ -5,18 +5,18 @@ with rustPlatform; buildRustPackage rec { name = "habitat-${version}"; - version = "0.7.0"; + version = "0.8.0"; src = fetchFromGitHub { owner = "habitat-sh"; repo = "habitat"; rev = version; - sha256 = "0pacxcc86w4zdakyd6qbz2rqx30rkv1j5aca1fqa1hf1jqg44vg0"; + sha256 = "1h9wv2v4hcv79jkkjf8j96lzxni9d51755zfflfr5s3ayaip7rzj"; }; sourceRoot = "habitat-${version}-src/components/hab"; - depsSha256 = "0bm9f6w7ircji4d1c1fgysna93w0lf8ws7gfkqq80zx92x3lz5z5"; + depsSha256 = "1612jaw3zdrgrb56r755bb18l8szdmf1wi7p9lpv3d2gklqcb7l1"; buildInputs = [ libsodium libarchive openssl ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b6e795740f2..405ffabef40 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1940,6 +1940,7 @@ in haveged = callPackage ../tools/security/haveged { }; habitat = callPackage ../applications/networking/cluster/habitat { }; + habitat-sh = callPackage ../applications/networking/cluster/habitat/chroot-env.nix { }; hardlink = callPackage ../tools/system/hardlink { }; From 3b27257e9a199679f0ffa164454b21822b4959ef Mon Sep 17 00:00:00 2001 From: rushmorem Date: Thu, 14 Jul 2016 05:40:09 +0200 Subject: [PATCH 057/123] habitat: fix naming collision --- pkgs/applications/networking/cluster/habitat/chroot-env.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/cluster/habitat/chroot-env.nix b/pkgs/applications/networking/cluster/habitat/chroot-env.nix index 388477f96e8..7d6b3749904 100644 --- a/pkgs/applications/networking/cluster/habitat/chroot-env.nix +++ b/pkgs/applications/networking/cluster/habitat/chroot-env.nix @@ -3,7 +3,7 @@ { habitat, libsodium, libarchive, openssl, buildFHSUserEnv }: buildFHSUserEnv { - name = "hab"; + name = "habitat-sh"; targetPkgs = pkgs: [ habitat libsodium libarchive openssl ]; runScript = "bash"; } From e9ddfe3d4cf4d62e3499a8ff0818727e65ac05a2 Mon Sep 17 00:00:00 2001 From: Ram Kromberg Date: Thu, 14 Jul 2016 08:59:33 +0300 Subject: [PATCH 058/123] ansible: 1.9.4 -> 1.9.6 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 08014b2de30..8d6f465b452 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -813,13 +813,13 @@ in modules // { }; ansible = buildPythonPackage rec { - version = "1.9.4"; + version = "1.9.6"; name = "ansible-${version}"; disabled = isPy3k; src = pkgs.fetchurl { url = "https://releases.ansible.com/ansible/${name}.tar.gz"; - sha256 = "1qvgzb66nlyc2ncmgmqhzdk0x0p2px09967p1yypf5czwjn2yb4p"; + sha256 = "0pgfh5z4w44sjgd77q6k769a5ipigjlm28zbpf2jhvz7n60kfxsh"; }; prePatch = '' From ce04ed0a9519f071ba734608300c5fafca01ac3a Mon Sep 17 00:00:00 2001 From: rardiol Date: Thu, 14 Jul 2016 04:19:04 -0300 Subject: [PATCH 059/123] spring: 101.0 -> 102.0 (#16934) --- pkgs/games/spring/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/games/spring/default.nix b/pkgs/games/spring/default.nix index e6631c21654..3b7c307330d 100644 --- a/pkgs/games/spring/default.nix +++ b/pkgs/games/spring/default.nix @@ -8,11 +8,11 @@ stdenv.mkDerivation rec { name = "spring-${version}"; - version = "101.0"; + version = "102.0"; src = fetchurl { url = "mirror://sourceforge/springrts/spring_${version}_src.tar.lzma"; - sha256 = "0nr65zhw92k36zgwqgi31vcp129vk7r3v7xzd6l9w7mp1ljvypgi"; + sha256 = "0gjlpzwl3bdv1ickm8r3xlrbc6dm7m8i968hw3p0an49k6bqa77i"; }; # The cmake included module correcly finds nix's glew, however From aab727fd77b70c714f642952396b894255d6d458 Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Thu, 14 Jul 2016 10:19:20 +0200 Subject: [PATCH 060/123] tokei: init at 3.0.0 --- pkgs/development/tools/misc/tokei/default.nix | 26 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/development/tools/misc/tokei/default.nix diff --git a/pkgs/development/tools/misc/tokei/default.nix b/pkgs/development/tools/misc/tokei/default.nix new file mode 100644 index 00000000000..206c6b5f593 --- /dev/null +++ b/pkgs/development/tools/misc/tokei/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchurl, rustPlatform }: + +with rustPlatform; + +buildRustPackage rec { + name = "tokei-${version}"; + version = "3.0.0"; + src = fetchurl { + url = "https://github.com/Aaronepower/tokei/archive/${version}.tar.gz"; + sha256 = "0xymz52gpasihzhxglzx4wh0312zkraxy4yrpxz694zalf2s5vj5"; + }; + + depsSha256 = "1syx8qzjn357dk2bf4ndmgc4zvrglmw88qiw117h6s511qyz8z0z"; + + installPhase = '' + mkdir -p $out/bin + cp -p target/release/tokei $out/bin/ + ''; + + meta = with stdenv.lib; { + description = "Count code, quickly"; + homepage = https://github.com/Aaronepower/tokei; + license = licenses.mit; + maintainers = with maintainers; [ gebner ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 405ffabef40..b17b243f3ee 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3666,6 +3666,8 @@ in toilet = callPackage ../tools/misc/toilet { }; + tokei = callPackage ../development/tools/misc/tokei { }; + tor = callPackage ../tools/security/tor { }; tor-arm = callPackage ../tools/security/tor/tor-arm.nix { }; From 6c7d1795099e75f3859083dc711c5068a8acb9ea Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Thu, 14 Jul 2016 10:21:46 +0200 Subject: [PATCH 061/123] tokei: add meta.platforms --- pkgs/development/tools/misc/tokei/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/tools/misc/tokei/default.nix b/pkgs/development/tools/misc/tokei/default.nix index 206c6b5f593..212ebd9c967 100644 --- a/pkgs/development/tools/misc/tokei/default.nix +++ b/pkgs/development/tools/misc/tokei/default.nix @@ -22,5 +22,6 @@ buildRustPackage rec { homepage = https://github.com/Aaronepower/tokei; license = licenses.mit; maintainers = with maintainers; [ gebner ]; + platforms = platforms.all; }; } From 8e4248a95d69957f992e2125f726705308a9159f Mon Sep 17 00:00:00 2001 From: Mathias Schreck Date: Thu, 14 Jul 2016 10:52:13 +0200 Subject: [PATCH 062/123] galen: 2.2.4 -> 2.3.0 --- pkgs/development/tools/galen/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/galen/default.nix b/pkgs/development/tools/galen/default.nix index 4b02ece0962..d553a574552 100644 --- a/pkgs/development/tools/galen/default.nix +++ b/pkgs/development/tools/galen/default.nix @@ -1,15 +1,15 @@ -{ stdenv, fetchurl, jdk, unzip }: +{ stdenv, fetchurl, jre8, unzip }: stdenv.mkDerivation rec { pname = "galen"; - version = "2.2.4"; + version = "2.3.0"; name = "${pname}-${version}"; - inherit jdk; + inherit jre8; src = fetchurl { url = "https://github.com/galenframework/galen/releases/download/galen-${version}/galen-bin-${version}.zip"; - sha256 = "0qx6pza6aw880ph76wbypcgy983pln8k4ad2indagb5qhiz4zw1d"; + sha256 = "10z7vh3jiq7kbzzp3j0354swkr4xxz9qimi5c5bddbiy671k6cra"; }; buildInputs = [ unzip ]; @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { ''; installPhase = '' - cat galen | sed -e "s,java,$jdk/bin/java," > $out/bin/galen + cat galen | sed -e "s,java,$jre8/bin/java," > $out/bin/galen chmod +x $out/bin/galen cp galen.jar $out/bin ''; From 6046702e5e6ffee5c35fd93d74eb4bee261d5313 Mon Sep 17 00:00:00 2001 From: Ram Kromberg Date: Thu, 14 Jul 2016 12:42:03 +0300 Subject: [PATCH 063/123] flashplayer: 11.2.202.626 -> 11.2.202.632 --- .../browsers/mozilla-plugins/flashplayer-11/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix index f9c978b2cd8..5ed1636aa65 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix @@ -70,11 +70,11 @@ let in stdenv.mkDerivation rec { name = "flashplayer-${version}"; - version = "11.2.202.626"; + version = "11.2.202.632"; src = fetchurl { url = "https://fpdownload.macromedia.com/pub/flashplayer/installers/archive/fp_${version}_archive.zip"; - sha256 = "1c7ffr1kjmdq5rcx3xzgkd4wg1c8b3zkb1ysmnjiicfm423xr9h7"; + sha256 = "0nf2d7jn8g6bp9vilkwwkkh6pm05fg3h73njsn4yvx3285k73lpn"; }; nativeBuildInputs = [ unzip ]; From d78a2b1ce9df168afd44f16ea07667d8e1e0732f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 14 Jul 2016 11:44:05 +0200 Subject: [PATCH 064/123] pythonPackages.sqlparse: fix tests --- pkgs/top-level/python-packages.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8d6f465b452..230d857d2c3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -22179,6 +22179,14 @@ in modules // { sha256 = "1s2fvaxgh9kqzrd6iwy5h7i61ckn05plx9np13zby93z3hdbx5nq"; }; + buildInputs = with self; [ pytest ]; + checkPhase = '' + py.test + ''; + + # Package supports 3.x, but tests are clearly 2.x only. + doCheck = !isPy3k; + meta = { description = "Non-validating SQL parser for Python"; longDescription = '' From c632980a0231a2514e7acec3e8a15feb5a5373fa Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 14 Jul 2016 11:44:36 +0200 Subject: [PATCH 065/123] pythonPackages.pgspecial: fix tests --- pkgs/top-level/python-packages.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 230d857d2c3..377a2d7ed30 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16683,6 +16683,12 @@ in modules // { url = "mirror://pypi/p/pgspecial/${name}.tar.gz"; }; + buildInputs = with self; [ pytest psycopg2 ]; + + checkPhase = '' + py.test tests + ''; + propagatedBuildInputs = with self; [ click sqlparse ]; meta = { From f745e02510bb05aa199783155dc278949d65aa9b Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 14 Jul 2016 11:44:55 +0200 Subject: [PATCH 066/123] pythonPackages.pgcli: fix tests, build on 3.5 --- pkgs/top-level/python-packages.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 377a2d7ed30..40f9433b7b0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16644,7 +16644,6 @@ in modules // { pgcli = buildPythonPackage rec { name = "pgcli-${version}"; version = "1.1.0"; - disabled = isPy35; src = pkgs.fetchFromGitHub { sha256 = "155avdckg93w3rmx0mz17wi6vcaba3lcppv9qwa6xlxfds9yzvlq"; @@ -16653,6 +16652,11 @@ in modules // { owner = "dbcli"; }; + buildInputs = with self; [ pytest mock ]; + checkPhase = '' + py.test tests -k 'not test_missing_rc_dir and not test_quoted_db_uri and not test_port_db_uri' + ''; + propagatedBuildInputs = with self; [ click configobj humanize prompt_toolkit psycopg2 pygments sqlparse pgspecial setproctitle @@ -16660,6 +16664,7 @@ in modules // { postPatch = '' substituteInPlace setup.py --replace "==" ">=" + rm tests/test_rowlimit.py ''; meta = { From de80d0544caecb797df40fa108710c801f38bf27 Mon Sep 17 00:00:00 2001 From: obadz Date: Thu, 14 Jul 2016 11:52:08 +0200 Subject: [PATCH 067/123] ecryptfs: add test to release-combined.nix --- nixos/release-combined.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix index f275291c716..9cc1ee762a8 100644 --- a/nixos/release-combined.nix +++ b/nixos/release-combined.nix @@ -68,6 +68,7 @@ in rec { (all nixos.tests.boot.uefiCdrom) (all nixos.tests.boot.uefiUsb) (all nixos.tests.boot-stage1) + (all nixos.tests.ecryptfs) (all nixos.tests.ipv6) (all nixos.tests.i3wm) (all nixos.tests.kde4) From 457a42881347871570194e6ec0974717abc0666b Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Thu, 14 Jul 2016 11:46:57 +0200 Subject: [PATCH 068/123] rustracer: add meta.platforms --- pkgs/development/tools/rust/racer/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/tools/rust/racer/default.nix b/pkgs/development/tools/rust/racer/default.nix index 0f4477c9b3f..3cb7a3e2346 100644 --- a/pkgs/development/tools/rust/racer/default.nix +++ b/pkgs/development/tools/rust/racer/default.nix @@ -31,5 +31,6 @@ buildRustPackage rec { homepage = https://github.com/phildawes/racer; license = stdenv.lib.licenses.mit; maintainers = with maintainers; [ jagajaga globin ]; + platforms = platforms.all; }; } From 40d5284cc27672b9879df4406f9938268d9cdcb6 Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Thu, 14 Jul 2016 11:47:18 +0200 Subject: [PATCH 069/123] rustfmt: add meta.platforms --- pkgs/development/tools/rust/rustfmt/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/tools/rust/rustfmt/default.nix b/pkgs/development/tools/rust/rustfmt/default.nix index 0fad7290df3..5e661a8afb8 100644 --- a/pkgs/development/tools/rust/rustfmt/default.nix +++ b/pkgs/development/tools/rust/rustfmt/default.nix @@ -20,5 +20,6 @@ buildRustPackage rec { homepage = https://github.com/nrc/rustfmt; license = with licenses; [ mit asl20 ]; maintainers = [ maintainers.globin ]; + platforms = platforms.all; }; } From 53a8d9350e25d38b78b8e8ede173bdfd2bfb4d8e Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Thu, 14 Jul 2016 12:09:12 +0200 Subject: [PATCH 070/123] procmail: clean up and add meta section --- pkgs/applications/misc/procmail/default.nix | 28 ++++++++++----------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/pkgs/applications/misc/procmail/default.nix b/pkgs/applications/misc/procmail/default.nix index f4980cb2c6b..0bdc771e2bd 100644 --- a/pkgs/applications/misc/procmail/default.nix +++ b/pkgs/applications/misc/procmail/default.nix @@ -3,26 +3,26 @@ stdenv.mkDerivation { name = "procmail-3.22"; - buildInputs = [ stdenv.cc.libc ]; + patches = [ ./CVE-2014-3618.patch ]; # getline is defined differently in glibc now. So rename it. - installPhase = " - mkdir -p \$out/bin - sed -e \"s%^RM.*$%RM=`type -f rm | awk '{print $3;}'` -f%\" -i Makefile - sed -e \"s%^BASENAME.*%\BASENAME=$out%\" -i Makefile - sed -e \"s%^LIBS=.*%LIBS=-lm%\" -i Makefile - sed -e \"s%getline%thisgetline%g\" -i src/*.c src/*.h - make DESTDIR=\$out install - "; - - phases = "unpackPhase patchPhase installPhase"; - - patches = [ ./CVE-2014-3618.patch ]; + postPatch = '' + sed -e "s%^RM.*$%#%" -i Makefile + sed -e "s%^BASENAME.*%\BASENAME=$out%" -i Makefile + sed -e "s%^LIBS=.*%LIBS=-lm%" -i Makefile + sed -e "s%getline%thisgetline%g" -i src/*.c src/*.h + ''; src = fetchurl { url = ftp://ftp.fu-berlin.de/pub/unix/mail/procmail/procmail-3.22.tar.gz; sha256 = "05z1c803n5cppkcq99vkyd5myff904lf9sdgynfqngfk9nrpaz08"; }; - meta.homepage = "http://www.procmail.org/"; + meta = with stdenv.lib; { + description = "Mail processing and filtering utility"; + homepage = http://www.procmail.org/; + license = licenses.gpl2; + platforms = platforms.unix; + maintainers = with maintainers; [ gebner ]; + }; } From efe4d48e8e6282ae8dde67fed5977b30e491399a Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Thu, 14 Jul 2016 03:18:07 -0700 Subject: [PATCH 071/123] rkt: 1.9.1 -> 1.10.1 (#16895) --- pkgs/applications/virtualization/rkt/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/virtualization/rkt/default.nix b/pkgs/applications/virtualization/rkt/default.nix index 2fee98ac499..17c7f7e2928 100644 --- a/pkgs/applications/virtualization/rkt/default.nix +++ b/pkgs/applications/virtualization/rkt/default.nix @@ -11,7 +11,7 @@ let stage1Flavours = [ "coreos" "fly" ]; in stdenv.mkDerivation rec { - version = "1.9.1"; + version = "1.10.1"; name = "rkt-${version}"; BUILDDIR="build-${name}"; @@ -19,7 +19,7 @@ in stdenv.mkDerivation rec { rev = "v${version}"; owner = "coreos"; repo = "rkt"; - sha256 = "094pqxcn91g1s3f0ly3z2lb11s4q3dn99h8cr7lqalkd0gj9l4xg"; + sha256 = "0hy6b0lyjsh0m1ca7hga31nybrbi9wpf8c59wbzvm1wlnqzsjkqi"; }; stage1BaseImage = fetchurl { @@ -50,7 +50,7 @@ in stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/bin - cp -Rv $BUILDDIR/bin/* $out/bin + cp -Rv $BUILDDIR/target/bin/* $out/bin wrapProgram $out/bin/rkt \ --prefix LD_LIBRARY_PATH : ${systemd}/lib \ --prefix PATH : ${iptables}/bin From 2f00cea5df533ecde2b403f746161525bf0c3387 Mon Sep 17 00:00:00 2001 From: J Phani Mahesh Date: Thu, 14 Jul 2016 15:52:00 +0530 Subject: [PATCH 072/123] zscroll: propogatedBuildInputs -> propagatedBuildInputs --- pkgs/applications/misc/zscroll/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/zscroll/default.nix b/pkgs/applications/misc/zscroll/default.nix index 4d9197c8fd4..92d173807f9 100644 --- a/pkgs/applications/misc/zscroll/default.nix +++ b/pkgs/applications/misc/zscroll/default.nix @@ -16,7 +16,7 @@ python3Packages.buildPythonApplication { doCheck = false; - propogatedBuildInputs = [ python3 ]; + propagatedBuildInputs = [ python3 ]; meta = with stdenv.lib; { description = "A text scroller for use with panels and shells"; From 79312dc614f111cb96de93ca20099eb871132ae9 Mon Sep 17 00:00:00 2001 From: J Phani Mahesh Date: Thu, 14 Jul 2016 15:53:09 +0530 Subject: [PATCH 073/123] xflux-gui: propogatedBuildInputs -> propagatedBuildInputs --- pkgs/tools/misc/xflux/gui.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/xflux/gui.nix b/pkgs/tools/misc/xflux/gui.nix index b78eb910f93..0cf30942e73 100644 --- a/pkgs/tools/misc/xflux/gui.nix +++ b/pkgs/tools/misc/xflux/gui.nix @@ -19,7 +19,7 @@ buildPythonPackage rec { # remove messing with shipped binary patches = [ ./setup.patch ]; - # not sure if these need to be propogated or not? + # not sure if these need to be propagated or not? propagatedBuildInputs = [ pexpect pyGtkGlade From ac19f09122a56ebd5539bce88007ea09c2d7ae9f Mon Sep 17 00:00:00 2001 From: J Phani Mahesh Date: Thu, 14 Jul 2016 17:23:06 +0530 Subject: [PATCH 074/123] wicd: propogatedBuildInputs -> propagatedBuildInputs --- pkgs/tools/networking/wicd/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/networking/wicd/default.nix b/pkgs/tools/networking/wicd/default.nix index 9294d4c88ae..9315a53cb3e 100644 --- a/pkgs/tools/networking/wicd/default.nix +++ b/pkgs/tools/networking/wicd/default.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { ./fix-curses.patch ]; - # Should I be using pygtk's propogated build inputs? + # Should I be using pygtk's propagated build inputs? # !!! Should use makeWrapper. postPatch = '' # We don't have "python2". From bbd0a47950a2503eb448fc82b24f1d83325118c0 Mon Sep 17 00:00:00 2001 From: J Phani Mahesh Date: Thu, 14 Jul 2016 17:26:19 +0530 Subject: [PATCH 075/123] vim-plugin:YouCompleteMe: propogatedBuildInputs -> propagatedBuildInputs --- pkgs/misc/vim-plugins/default.nix | 2 +- pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index a34690853fc..3134aa0eeba 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -1126,7 +1126,7 @@ rec { llvmPackages.llvm ] ++ stdenv.lib.optional stdenv.isDarwin Cocoa; - propogatedBuildInputs = [ + propagatedBuildInputs = [ rustracerd ]; diff --git a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme index a27b1f053a2..eb7f6bedf49 100644 --- a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme +++ b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme @@ -4,7 +4,7 @@ llvmPackages.llvm ] ++ stdenv.lib.optional stdenv.isDarwin Cocoa; - propogatedBuildInputs = [ + propagatedBuildInputs = [ rustracerd ]; From ab9515092b291fb92cf83a21c2a344a096ae8474 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 14 Jul 2016 15:30:30 +0200 Subject: [PATCH 076/123] symlinkJoin: truly pass the defaulted parameters The catch is that in nix the @-pattern binds the set that was *explicitly* passed to the function, i.e. default values are *not* taken into account. --- pkgs/build-support/trivial-builders.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/build-support/trivial-builders.nix b/pkgs/build-support/trivial-builders.nix index 18e49105ae7..8775286b117 100644 --- a/pkgs/build-support/trivial-builders.nix +++ b/pkgs/build-support/trivial-builders.nix @@ -49,15 +49,17 @@ rec { # Create a forest of symlinks to the files in `paths'. symlinkJoin = - args@{ name + args_@{ name , paths , preferLocalBuild ? true , allowSubstitutes ? false , postBuild ? "" , ... }: - runCommand name - (removeAttrs args [ "name" "postBuild" ]) + let + args = removeAttrs args_ [ "name" "postBuild" ] + // { inherit preferLocalBuild allowSubstitutes; }; # pass the defaults + in runCommand name args '' mkdir -p $out for i in $paths; do From 4a9f77811896e3fada54d27835c0fd6df7ec566e Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Thu, 14 Jul 2016 15:10:12 +0300 Subject: [PATCH 077/123] kde4: Use ffmpeg_2 to fix ffmpegthumbs build --- pkgs/top-level/all-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cfb8840931b..4842279dc50 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15887,6 +15887,7 @@ in pythonBindings = true; }; ruby = ruby_2_2; # see https://github.com/NixOS/nixpkgs/pull/12610#issuecomment-188666473 + ffmpeg = ffmpeg_2; # ffmpegthumb doesn't build otherwise } ../desktops/kde-4.14; From 13160d9c10a0e1f77bf03e59fd9ee29b946cf9a5 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Thu, 14 Jul 2016 15:11:17 +0300 Subject: [PATCH 078/123] buildInLinuxVM: Workaround bug #16742 This is blocking the channel update: #16949 --- pkgs/build-support/vm/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/build-support/vm/default.nix b/pkgs/build-support/vm/default.nix index 82cb72cb67e..fa7107bd738 100644 --- a/pkgs/build-support/vm/default.nix +++ b/pkgs/build-support/vm/default.nix @@ -319,6 +319,7 @@ rec { origArgs = args; origBuilder = builder; QEMU_OPTS = "${QEMU_OPTS} -m ${toString memSize}"; + passAsFile = []; # HACK fix - see https://github.com/NixOS/nixpkgs/issues/16742 }); From 52ed165c916500fd73d0d52395d6e71cc90d9e03 Mon Sep 17 00:00:00 2001 From: Alexey Lebedeff Date: Thu, 14 Jul 2016 15:32:54 +0300 Subject: [PATCH 079/123] viber: 4.2.2.6 -> 6.0.1.5 - Use Qt provided by viber itself -> no longer broken - Remove notes about obsolete bugs --- .../instant-messengers/viber/default.nix | 99 +++++++++++++------ 1 file changed, 68 insertions(+), 31 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/viber/default.nix b/pkgs/applications/networking/instant-messengers/viber/default.nix index 8e07bbf975b..f16ee8bd5cc 100644 --- a/pkgs/applications/networking/instant-messengers/viber/default.nix +++ b/pkgs/applications/networking/instant-messengers/viber/default.nix @@ -1,20 +1,20 @@ -{ fetchurl, stdenv, dpkg, makeWrapper, xorg, qt5Full, gstreamer, zlib, sqlite, libxslt }: +{fetchurl, stdenv, dpkg, makeWrapper, + alsaLib, cups, curl, dbus, expat, fontconfig, freetype, glib, gst_all_1, harfbuzz, libcap, + libpulseaudio, mesa, nspr, nss, libudev, wayland, xorg, zlib, ... +}: assert stdenv.system == "x86_64-linux"; -# BUG: viber tries to access contacts list and that causes segfault -# FIX: you have to do `chmod 444 ~/.ViberPC//Avatars` -# BUG: viber tries to it's downloads and that causes segfault -# FIX: you have to do `chmod 444 ~/Documents/ViberDownloads` -# TODO: fix bugs +# BUG: Viber requires running tray application, segfaulting if it's missing +# FIX: Start something like `stalonetray` if you DE doesn't provide tray stdenv.mkDerivation rec { name = "viber-${version}"; - version = "4.2.2.6"; + version = "6.0.1.5"; src = fetchurl { url = "http://download.cdn.viber.com/cdn/desktop/Linux/viber.deb"; - sha256 = "1fv269z9sni21lc1ka25jnxr9w8zfg1gfn2c7fnd8cdd5fm57d26"; + sha256 = "026vp2pv66b2dlwi5w5wk4yjnnmnsqapdww98p7xdnz8n0hnsbbi"; }; buildInputs = [ dpkg makeWrapper ]; @@ -22,36 +22,74 @@ stdenv.mkDerivation rec { unpackPhase = "true"; libPath = stdenv.lib.makeLibraryPath [ - qt5Full - xorg.libX11 - gstreamer - zlib - sqlite - xorg.libXrender - libxslt + alsaLib + cups + curl + dbus + expat + fontconfig + freetype + glib + gst_all_1.gst-plugins-base + gst_all_1.gstreamer + harfbuzz + libcap + libpulseaudio + mesa + nspr + nss stdenv.cc.cc - xorg.libXScrnSaver + libudev + wayland + zlib + + xorg.libICE + xorg.libSM + xorg.libX11 + xorg.libxcb + xorg.libXcomposite + xorg.libXcursor + xorg.libXdamage xorg.libXext - ]; + xorg.libXfixes + xorg.libXi + xorg.libXrandr + xorg.libXrender + xorg.libXScrnSaver + xorg.libXtst + xorg.xcbutilimage + xorg.xcbutilkeysyms + xorg.xcbutilrenderutil + xorg.xcbutilwm + ] + ; installPhase = '' dpkg-deb -x $src $out mkdir -p $out/bin - mv $out/opt/viber/{Sound,icons,libqfacebook.so} $out - mv $out/opt/viber/Viber $out/viber - rm -rf $out/opt - ln -s $out/viber $out/bin/viber - mkdir -p usr/lib/mozilla/plugins - patchelf \ - --set-rpath $libPath \ - $out/libqfacebook.so - patchelf \ - --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath $libPath:$out \ - $out/viber + # Soothe nix-build "suspicions" + chmod -R g-w $out - wrapProgram $out/viber --prefix LD_LIBRARY_PATH : $libPath:$out + for file in $(find $out -type f \( -perm /0111 -o -name \*.so\* \) ); do + patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$file" || true + patchelf --set-rpath $libPath:$out/opt/viber/lib $file || true + done + + # qt.conf is not working, so override everything using environment variables + wrapProgram $out/opt/viber/Viber \ + --set QT_PLUGIN_PATH "$out/opt/viber/plugins" \ + --set QT_XKB_CONFIG_ROOT "${xorg.xkeyboardconfig}/share/X11/xkb" \ + --set QTCOMPOSE "${xorg.libX11}/share/X11/locale" + ln -s $out/opt/viber/Viber $out/bin/viber + + mv $out/usr/share $out/share + rm -rf $out/usr + + # Fix the desktop link + substituteInPlace $out/share/applications/viber.desktop \ + --replace /opt/viber/Viber $out/opt/viber/Viber \ + --replace /usr/share/ $out/share/ ''; dontStrip = true; @@ -63,7 +101,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.unfree; platforms = stdenv.lib.platforms.linux; maintainers = with stdenv.lib.maintainers; [ jagajaga ]; - broken = true; }; } From c3ffae477767d22fd0e714e4071fb25e4f3ec8d7 Mon Sep 17 00:00:00 2001 From: Sander van der Burg Date: Thu, 14 Jul 2016 12:56:45 +0000 Subject: [PATCH 080/123] nodejs: implement a darwin-specific fix that properly refers to tr1/type_traits --- pkgs/development/web/nodejs/nodejs.nix | 5 ++--- pkgs/development/web/nodejs/v6.nix | 4 ++++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/development/web/nodejs/nodejs.nix b/pkgs/development/web/nodejs/nodejs.nix index a04a0ed971b..cae7648e6e9 100644 --- a/pkgs/development/web/nodejs/nodejs.nix +++ b/pkgs/development/web/nodejs/nodejs.nix @@ -2,6 +2,7 @@ , pkgconfig, runCommand, which, libtool , version , src +, preBuild ? "" , ... }: @@ -25,9 +26,7 @@ let in stdenv.mkDerivation { - inherit version; - - inherit src; + inherit version src preBuild; name = "nodejs-${version}"; diff --git a/pkgs/development/web/nodejs/v6.nix b/pkgs/development/web/nodejs/v6.nix index 43a39451f9b..bde9065d085 100644 --- a/pkgs/development/web/nodejs/v6.nix +++ b/pkgs/development/web/nodejs/v6.nix @@ -9,4 +9,8 @@ import ./nodejs.nix (args // rec { url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz"; sha256 = "2dfeeddba750b52a528b38a1c31e35c1fb40b19cf28fbf430c3c8c7a6517005a"; }; + preBuild = stdenv.lib.optionalString (stdenv.system == "x86_64-darwin") '' + sed -i -e "s|tr1/type_traits|type_traits|g" \ + -e "s|std::tr1|std|" src/util.h + ''; }) From dc6306a69d510bf0818c2b4572ffc0cd7ba9a30d Mon Sep 17 00:00:00 2001 From: zimbatm Date: Thu, 14 Jul 2016 14:02:54 +0100 Subject: [PATCH 081/123] zerotierone: 1.1.6 -> 1.1.12 --- pkgs/tools/networking/zerotierone/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/zerotierone/default.nix b/pkgs/tools/networking/zerotierone/default.nix index 29d131b509b..3dc68ca149a 100644 --- a/pkgs/tools/networking/zerotierone/default.nix +++ b/pkgs/tools/networking/zerotierone/default.nix @@ -3,12 +3,12 @@ with stdenv.lib; stdenv.mkDerivation rec { - version = "1.1.6"; + version = "1.1.12"; name = "zerotierone"; src = fetchurl { url = "https://github.com/zerotier/ZeroTierOne/archive/${version}.tar.gz"; - sha256 = "1bl8dppaqydsd1qf9pk3bp16amkwjxyqh1gvm62ys2a0m4c529ks"; + sha256 = "0mji6bmxjvxy2mhvzfz4vpdz62n1wv6a02rapzbiad8zr2c869cm"; }; preConfigure = '' From 9aee153f2b912b505aa273a6632a9cec0fc26f41 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Thu, 14 Jul 2016 11:10:56 +0800 Subject: [PATCH 082/123] zerofree: 1.0.3 -> 1.0.4 --- pkgs/tools/filesystems/zerofree/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/filesystems/zerofree/default.nix b/pkgs/tools/filesystems/zerofree/default.nix index 4e027a53ffc..994777680db 100644 --- a/pkgs/tools/filesystems/zerofree/default.nix +++ b/pkgs/tools/filesystems/zerofree/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl, e2fsprogs }: stdenv.mkDerivation rec { - name = "zerofree-1.0.3"; + name = "zerofree-${version}"; + version = "1.0.4"; src = fetchurl { - url = "http://intgat.tigress.co.uk/rmy/uml/zerofree-1.0.3.tgz"; - sha256 = "3acfda860be0f0ddcb5c982ff3b4475b1ee8cc35a90ae2a910e93261dbe0ccf6"; + url = "http://frippery.org/uml/${name}.tgz"; + sha256 = "0f38mvn3wfacapayl54q04qlz4in417pfm6gapgm7dhyjs9y5yd7"; }; buildInputs = [ e2fsprogs ]; @@ -16,7 +17,7 @@ stdenv.mkDerivation rec { ''; meta = { - homepage = http://intgat.tigress.co.uk/rmy/uml/index.html; + homepage = http://frippery.org/uml/index.html; description = "Zero free blocks from ext2, ext3 and ext4 file-systems"; platforms = stdenv.lib.platforms.linux; maintainers = [ stdenv.lib.maintainers.theuni ]; From 2c169f83e7d43c92fe96b362b1ef45e390a0dc4d Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Thu, 14 Jul 2016 23:14:15 +0800 Subject: [PATCH 083/123] urweb: 20151220 -> 20160621 --- pkgs/development/compilers/urweb/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/urweb/default.nix b/pkgs/development/compilers/urweb/default.nix index eebc8a56765..d9c448970c9 100644 --- a/pkgs/development/compilers/urweb/default.nix +++ b/pkgs/development/compilers/urweb/default.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { name = "urweb-${version}"; - version = "20151220"; + version = "20160621"; src = fetchurl { url = "http://www.impredicative.com/ur/${name}.tgz"; - sha256 = "155maalm4l1ni7az3yqs0lrgl5f2xr3pz4118ag1hnk82qldd4s5"; + sha256 = "08km96hli5yp754nsxxjzih2la0m89j5wc2cq12rkas43nqqgr65"; }; buildInputs = [ openssl mlton mysql postgresql sqlite ]; From cb7d8822e9cb173cfcb1238cb9db5bd4784e4ea8 Mon Sep 17 00:00:00 2001 From: Tobias Pflug Date: Thu, 14 Jul 2016 18:01:27 +0200 Subject: [PATCH 084/123] w3m: fix build on darwin (#16955) --- pkgs/top-level/all-packages.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4842279dc50..56c435ae27b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14863,7 +14863,9 @@ in vym = callPackage ../applications/misc/vym { }; - w3m = callPackage ../applications/networking/browsers/w3m { }; + w3m = callPackage ../applications/networking/browsers/w3m { + graphicsSupport = !stdenv.isDarwin; + }; # Should always be the version with the most features w3m-full = w3m; From cbeb320c47bfc19c0ff45be15a6f16b54e878532 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Fri, 15 Jul 2016 00:06:39 +0800 Subject: [PATCH 085/123] eventstat: 0.02.02 -> 0.03.02 --- pkgs/os-specific/linux/eventstat/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/eventstat/default.nix b/pkgs/os-specific/linux/eventstat/default.nix index d6122202b82..49eab1fe254 100644 --- a/pkgs/os-specific/linux/eventstat/default.nix +++ b/pkgs/os-specific/linux/eventstat/default.nix @@ -1,12 +1,13 @@ -{ stdenv, lib, fetchzip }: +{ stdenv, lib, fetchzip, ncurses }: stdenv.mkDerivation rec { name = "eventstat-${version}"; - version = "0.02.02"; + version = "0.03.02"; src = fetchzip { url = "http://kernel.ubuntu.com/~cking/tarballs/eventstat/eventstat-${version}.tar.gz"; - sha256 = "1l1shcj3c0pxv1g6sqc10ka1crbx0cm2gldxbyrzqv2lmlfnmm44"; + sha256 = "1bwv0m9pk9l0jfibvsfjggc5pp9lyyrsfr10h6jm6kf1v6r6hf5s"; }; + buildInputs = [ ncurses ]; installFlags = [ "DESTDIR=$(out)" ]; postInstall = '' mv $out/usr/* $out From 121a8c064613b6ff3d5bd336f909a593f34d7f60 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Fri, 15 Jul 2016 00:06:54 +0800 Subject: [PATCH 086/123] stress-ng: 0.06.01 -> 0.06.11 --- pkgs/tools/system/stress-ng/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/system/stress-ng/default.nix b/pkgs/tools/system/stress-ng/default.nix index 0d55d1e7ca8..c45cc8a596b 100644 --- a/pkgs/tools/system/stress-ng/default.nix +++ b/pkgs/tools/system/stress-ng/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "stress-ng-${version}"; - version = "0.06.01"; + version = "0.06.11"; src = fetchurl { - sha256 = "1bk3sj6gyrgp5qfxiz6k7zml28m01iljgvxhp4yq391xzfyvrlg9"; + sha256 = "0481aji9hdq8qbslrrc87r2p2pn8jxf913ac8wm5kxj02yqf7ccv"; url = "http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.gz"; }; @@ -24,8 +24,8 @@ stdenv.mkDerivation rec { longDescription = '' Stress test a system in various selectable ways, exercising both various physical subsystems and various operating system kernel interfaces: - - over 60 different stress tests - - over 50 CPU specific stress tests that exercise floating point, + - over 130 different stress tests + - over 70 CPU specific stress tests that exercise floating point, integer, bit manipulation and control flow - over 20 virtual memory stress tests stress-ng was originally intended to make a machine work hard and trip From a927709a35cee56f878f0f57a932e1a6e2ebe23b Mon Sep 17 00:00:00 2001 From: Rickard Nilsson Date: Thu, 14 Jul 2016 20:54:06 +0200 Subject: [PATCH 087/123] openssh: Use the default privilege separation dir (/var/empty) If running NixOS inside a container where the host's root-owned files and directories have been mapped to some other uid (like nobody), the ssh daemon fails to start, producing this error message: fatal: /nix/store/...-openssh-7.2p2/empty must be owned by root and not group or world-writable. The reason for this is that when openssh is built, we explicitly set `--with-privsep-path=$out/empty`. This commit removes that flag which causes the default directory /var/empty to be used instead. Since NixOS' activation script correctly sets up that directory, the ssh daemon now also works within containers that have a non-root-owned nix store. --- pkgs/tools/networking/openssh/default.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkgs/tools/networking/openssh/default.nix b/pkgs/tools/networking/openssh/default.nix index 64b9fe98278..8d893c6a57f 100644 --- a/pkgs/tools/networking/openssh/default.nix +++ b/pkgs/tools/networking/openssh/default.nix @@ -66,11 +66,6 @@ stdenv.mkDerivation rec { ++ optional stdenv.isDarwin "--disable-libutil" ++ optional (!linkOpenssl) "--without-openssl"; - preConfigure = '' - configureFlagsArray+=("--with-privsep-path=$out/empty") - mkdir -p $out/empty - ''; - enableParallelBuilding = true; postInstall = '' From d2164cfcdae1a0315e5723cdf24e2c0572c0bbb9 Mon Sep 17 00:00:00 2001 From: davidak Date: Thu, 14 Jul 2016 22:04:55 +0200 Subject: [PATCH 088/123] caddy service: fix nix store output path systemd[11376]: caddy.service: Failed at step EXEC spawning /nix/store/ghpcwj6paccc92l1gk7ykb6gf2i2w6fi-go1.6-caddy-0.8.3/bin/caddy: No such file or directory --- nixos/modules/services/web-servers/caddy.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/web-servers/caddy.nix b/nixos/modules/services/web-servers/caddy.nix index 0d2612aaa66..b84431373bd 100644 --- a/nixos/modules/services/web-servers/caddy.nix +++ b/nixos/modules/services/web-servers/caddy.nix @@ -33,7 +33,7 @@ in after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; serviceConfig = { - ExecStart = "${pkgs.caddy}/bin/caddy -conf=${configFile} -email=${cfg.email}"; + ExecStart = "${pkgs.caddy.bin}/bin/caddy -conf=${configFile} -email=${cfg.email}"; Type = "simple"; User = "caddy"; Group = "caddy"; From d477991c4856d47b4e7ebded7c6822cdc68b0f50 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 7 Jul 2016 18:45:54 +0200 Subject: [PATCH 089/123] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v2.0-4-gb156b94 using the following inputs: - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/5bb0a1b20f0c9cc20c5e0c9c33deac5e855bb316 - LTS Haskell: https://github.com/fpco/lts-haskell/commit/a5a99cf17698741e56c8efdf50989692c2e363e0 - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/3664752ea8eaaca08dcc932bfcfaf3a3e20eddc4 --- .../haskell-modules/configuration-lts-0.0.nix | 43 + .../haskell-modules/configuration-lts-0.1.nix | 43 + .../haskell-modules/configuration-lts-0.2.nix | 43 + .../haskell-modules/configuration-lts-0.3.nix | 43 + .../haskell-modules/configuration-lts-0.4.nix | 43 + .../haskell-modules/configuration-lts-0.5.nix | 43 + .../haskell-modules/configuration-lts-0.6.nix | 43 + .../haskell-modules/configuration-lts-0.7.nix | 43 + .../haskell-modules/configuration-lts-1.0.nix | 44 + .../haskell-modules/configuration-lts-1.1.nix | 44 + .../configuration-lts-1.10.nix | 44 + .../configuration-lts-1.11.nix | 44 + .../configuration-lts-1.12.nix | 44 + .../configuration-lts-1.13.nix | 44 + .../configuration-lts-1.14.nix | 44 + .../configuration-lts-1.15.nix | 44 + .../haskell-modules/configuration-lts-1.2.nix | 44 + .../haskell-modules/configuration-lts-1.4.nix | 44 + .../haskell-modules/configuration-lts-1.5.nix | 44 + .../haskell-modules/configuration-lts-1.7.nix | 44 + .../haskell-modules/configuration-lts-1.8.nix | 44 + .../haskell-modules/configuration-lts-1.9.nix | 44 + .../haskell-modules/configuration-lts-2.0.nix | 44 + .../haskell-modules/configuration-lts-2.1.nix | 44 + .../configuration-lts-2.10.nix | 44 + .../configuration-lts-2.11.nix | 44 + .../configuration-lts-2.12.nix | 44 + .../configuration-lts-2.13.nix | 44 + .../configuration-lts-2.14.nix | 44 + .../configuration-lts-2.15.nix | 44 + .../configuration-lts-2.16.nix | 44 + .../configuration-lts-2.17.nix | 44 + .../configuration-lts-2.18.nix | 44 + .../configuration-lts-2.19.nix | 44 + .../haskell-modules/configuration-lts-2.2.nix | 44 + .../configuration-lts-2.20.nix | 44 + .../configuration-lts-2.21.nix | 44 + .../configuration-lts-2.22.nix | 44 + .../haskell-modules/configuration-lts-2.3.nix | 44 + .../haskell-modules/configuration-lts-2.4.nix | 44 + .../haskell-modules/configuration-lts-2.5.nix | 44 + .../haskell-modules/configuration-lts-2.6.nix | 44 + .../haskell-modules/configuration-lts-2.7.nix | 44 + .../haskell-modules/configuration-lts-2.8.nix | 44 + .../haskell-modules/configuration-lts-2.9.nix | 44 + .../haskell-modules/configuration-lts-3.0.nix | 47 + .../haskell-modules/configuration-lts-3.1.nix | 47 + .../configuration-lts-3.10.nix | 48 + .../configuration-lts-3.11.nix | 48 + .../configuration-lts-3.12.nix | 48 + .../configuration-lts-3.13.nix | 48 + .../configuration-lts-3.14.nix | 48 + .../configuration-lts-3.15.nix | 48 + .../configuration-lts-3.16.nix | 48 + .../configuration-lts-3.17.nix | 48 + .../configuration-lts-3.18.nix | 48 + .../configuration-lts-3.19.nix | 48 + .../haskell-modules/configuration-lts-3.2.nix | 47 + .../configuration-lts-3.20.nix | 48 + .../configuration-lts-3.21.nix | 48 + .../configuration-lts-3.22.nix | 48 + .../haskell-modules/configuration-lts-3.3.nix | 47 + .../haskell-modules/configuration-lts-3.4.nix | 47 + .../haskell-modules/configuration-lts-3.5.nix | 48 + .../haskell-modules/configuration-lts-3.6.nix | 48 + .../haskell-modules/configuration-lts-3.7.nix | 48 + .../haskell-modules/configuration-lts-3.8.nix | 48 + .../haskell-modules/configuration-lts-3.9.nix | 48 + .../haskell-modules/configuration-lts-4.0.nix | 51 + .../haskell-modules/configuration-lts-4.1.nix | 51 + .../haskell-modules/configuration-lts-4.2.nix | 51 + .../haskell-modules/configuration-lts-5.0.nix | 53 + .../haskell-modules/configuration-lts-5.1.nix | 53 + .../configuration-lts-5.10.nix | 58 + .../configuration-lts-5.11.nix | 58 + .../configuration-lts-5.12.nix | 58 + .../configuration-lts-5.13.nix | 58 + .../configuration-lts-5.14.nix | 59 + .../configuration-lts-5.15.nix | 59 + .../configuration-lts-5.16.nix | 61 + .../configuration-lts-5.17.nix | 62 + .../configuration-lts-5.18.nix | 63 + .../haskell-modules/configuration-lts-5.2.nix | 56 + .../haskell-modules/configuration-lts-5.3.nix | 57 + .../haskell-modules/configuration-lts-5.4.nix | 58 + .../haskell-modules/configuration-lts-5.5.nix | 58 + .../haskell-modules/configuration-lts-5.6.nix | 58 + .../haskell-modules/configuration-lts-5.7.nix | 58 + .../haskell-modules/configuration-lts-5.8.nix | 58 + .../haskell-modules/configuration-lts-5.9.nix | 58 + .../haskell-modules/configuration-lts-6.0.nix | 67 + .../haskell-modules/configuration-lts-6.1.nix | 70 + .../haskell-modules/configuration-lts-6.2.nix | 71 + .../haskell-modules/configuration-lts-6.3.nix | 73 + .../haskell-modules/configuration-lts-6.4.nix | 77 + .../haskell-modules/configuration-lts-6.5.nix | 79 + .../haskell-modules/configuration-lts-6.6.nix | 80 + .../haskell-modules/configuration-lts-6.7.nix | 8169 +++++++++++++++++ .../haskell-modules/hackage-packages.nix | 2885 +++++- 99 files changed, 15434 insertions(+), 464 deletions(-) create mode 100644 pkgs/development/haskell-modules/configuration-lts-6.7.nix diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 0de5fc2f95f..a4b6af3eb6b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -434,6 +435,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -2088,7 +2090,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2198,6 +2202,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2518,6 +2523,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2594,6 +2600,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2606,6 +2613,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2659,6 +2667,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3439,6 +3448,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3597,6 +3607,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3607,6 +3620,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3693,6 +3707,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4428,9 +4443,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4942,6 +4959,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5410,6 +5428,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5455,6 +5474,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5720,6 +5740,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_2_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5834,6 +5855,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5933,6 +5955,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5997,6 +6020,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6150,6 +6174,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6390,6 +6415,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6685,6 +6711,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6934,6 +6961,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7224,6 +7252,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7499,6 +7531,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7749,6 +7782,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7863,6 +7897,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7980,6 +8015,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8119,6 +8155,7 @@ self: super: { "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8212,6 +8249,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8490,6 +8528,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8635,6 +8674,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8671,6 +8711,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9133,6 +9174,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9375,6 +9417,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index e9649ded74e..04204e40226 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -434,6 +435,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -2088,7 +2090,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2198,6 +2202,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2518,6 +2523,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2594,6 +2600,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2606,6 +2613,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2659,6 +2667,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3439,6 +3448,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3597,6 +3607,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3607,6 +3620,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3693,6 +3707,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4428,9 +4443,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4942,6 +4959,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5410,6 +5428,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5455,6 +5474,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5720,6 +5740,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_2_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5834,6 +5855,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5933,6 +5955,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5997,6 +6020,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6150,6 +6174,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6390,6 +6415,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6685,6 +6711,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6934,6 +6961,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7224,6 +7252,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7499,6 +7531,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7749,6 +7782,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7863,6 +7897,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7980,6 +8015,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8119,6 +8155,7 @@ self: super: { "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8212,6 +8249,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8490,6 +8528,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8635,6 +8674,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8671,6 +8711,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9133,6 +9174,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9375,6 +9417,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index ddd270cab51..eae18df92cd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -434,6 +435,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -2088,7 +2090,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2198,6 +2202,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2518,6 +2523,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2594,6 +2600,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2606,6 +2613,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2659,6 +2667,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3439,6 +3448,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3597,6 +3607,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3607,6 +3620,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3693,6 +3707,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4428,9 +4443,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4942,6 +4959,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5410,6 +5428,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5455,6 +5474,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5720,6 +5740,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_2_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5834,6 +5855,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5933,6 +5955,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5997,6 +6020,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6150,6 +6174,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6390,6 +6415,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6685,6 +6711,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6934,6 +6961,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7224,6 +7252,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7499,6 +7531,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7749,6 +7782,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7863,6 +7897,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7980,6 +8015,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8119,6 +8155,7 @@ self: super: { "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8212,6 +8249,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8490,6 +8528,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8635,6 +8674,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8671,6 +8711,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9133,6 +9174,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9375,6 +9417,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index ed01ed9ba0b..3ced309e08b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -434,6 +435,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -2088,7 +2090,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2198,6 +2202,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2518,6 +2523,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2594,6 +2600,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2606,6 +2613,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2659,6 +2667,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3439,6 +3448,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3597,6 +3607,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3607,6 +3620,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3693,6 +3707,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4428,9 +4443,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4942,6 +4959,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5410,6 +5428,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5455,6 +5474,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5720,6 +5740,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_2_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5834,6 +5855,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5933,6 +5955,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5997,6 +6020,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6150,6 +6174,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6390,6 +6415,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6685,6 +6711,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6934,6 +6961,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7224,6 +7252,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7499,6 +7531,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7749,6 +7782,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7863,6 +7897,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7980,6 +8015,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8119,6 +8155,7 @@ self: super: { "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8212,6 +8249,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8490,6 +8528,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8635,6 +8674,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8671,6 +8711,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9133,6 +9174,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9375,6 +9417,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index a7ba69d54ce..48042705f5f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -434,6 +435,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -2088,7 +2090,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2198,6 +2202,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2518,6 +2523,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2594,6 +2600,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2606,6 +2613,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2659,6 +2667,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3439,6 +3448,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3597,6 +3607,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3607,6 +3620,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3693,6 +3707,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4426,9 +4441,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4940,6 +4957,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5408,6 +5426,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5453,6 +5472,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5718,6 +5738,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_2_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5832,6 +5853,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5931,6 +5953,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5995,6 +6018,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6148,6 +6172,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6388,6 +6413,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6683,6 +6709,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6932,6 +6959,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7222,6 +7250,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7497,6 +7529,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7746,6 +7779,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7860,6 +7894,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7977,6 +8012,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8116,6 +8152,7 @@ self: super: { "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8209,6 +8246,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8487,6 +8525,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8632,6 +8671,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8668,6 +8708,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9130,6 +9171,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9372,6 +9414,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 40e2308969d..5c246287aed 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -434,6 +435,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -2088,7 +2090,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2198,6 +2202,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2518,6 +2523,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2594,6 +2600,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2606,6 +2613,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2659,6 +2667,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3439,6 +3448,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3597,6 +3607,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3607,6 +3620,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3693,6 +3707,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4426,9 +4441,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4940,6 +4957,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5408,6 +5426,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5453,6 +5472,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5718,6 +5738,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_2_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5832,6 +5853,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5931,6 +5953,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5995,6 +6018,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6148,6 +6172,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6388,6 +6413,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6683,6 +6709,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6932,6 +6959,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7222,6 +7250,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7497,6 +7529,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7746,6 +7779,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7860,6 +7894,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7977,6 +8012,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8116,6 +8152,7 @@ self: super: { "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8209,6 +8246,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8487,6 +8525,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8632,6 +8671,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8668,6 +8708,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9130,6 +9171,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9372,6 +9414,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index fd306cd0a75..220a14bf4a1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -434,6 +435,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -2087,7 +2089,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2197,6 +2201,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2517,6 +2522,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2593,6 +2599,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2605,6 +2612,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2658,6 +2666,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3438,6 +3447,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3596,6 +3606,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3606,6 +3619,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3692,6 +3706,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4424,9 +4439,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4938,6 +4955,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5406,6 +5424,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5451,6 +5470,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5716,6 +5736,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_2_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5830,6 +5851,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5929,6 +5951,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5993,6 +6016,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6146,6 +6170,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6386,6 +6411,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6681,6 +6707,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6930,6 +6957,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7220,6 +7248,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7494,6 +7526,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7743,6 +7776,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7857,6 +7891,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7974,6 +8009,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8113,6 +8149,7 @@ self: super: { "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8206,6 +8243,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8484,6 +8522,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8629,6 +8668,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8665,6 +8705,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9127,6 +9168,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9369,6 +9411,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 6418e9b7209..7c3349d29e1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -434,6 +435,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -2087,7 +2089,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2197,6 +2201,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2517,6 +2522,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2593,6 +2599,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2605,6 +2612,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2658,6 +2666,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3438,6 +3447,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3596,6 +3606,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3606,6 +3619,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3692,6 +3706,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4424,9 +4439,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4938,6 +4955,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5406,6 +5424,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5451,6 +5470,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5716,6 +5736,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_2_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5830,6 +5851,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5929,6 +5951,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5993,6 +6016,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6146,6 +6170,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6386,6 +6411,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6681,6 +6707,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6930,6 +6957,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7220,6 +7248,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7494,6 +7526,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7743,6 +7776,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7857,6 +7891,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7974,6 +8009,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8113,6 +8149,7 @@ self: super: { "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8206,6 +8243,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8484,6 +8522,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8629,6 +8668,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8665,6 +8705,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9127,6 +9168,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9369,6 +9411,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index ba011110146..d56ee1e4932 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1876,6 +1878,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2083,7 +2086,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2193,6 +2198,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2512,6 +2518,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2588,6 +2595,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2600,6 +2608,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2653,6 +2662,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3432,6 +3442,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3590,6 +3601,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3600,6 +3614,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3686,6 +3701,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4418,9 +4434,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4931,6 +4949,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5399,6 +5418,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5444,6 +5464,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5709,6 +5730,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_3_3"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5823,6 +5845,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5922,6 +5945,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5986,6 +6010,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6139,6 +6164,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6379,6 +6405,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6674,6 +6701,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6923,6 +6951,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7213,6 +7242,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7486,6 +7519,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7735,6 +7769,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7849,6 +7884,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7966,6 +8002,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8104,6 +8141,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8197,6 +8235,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8475,6 +8514,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8620,6 +8660,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8656,6 +8697,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9117,6 +9159,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9359,6 +9402,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index cfe4e6c6171..b576738f7a9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1876,6 +1878,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2082,7 +2085,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2192,6 +2197,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2510,6 +2516,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2586,6 +2593,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2598,6 +2606,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2651,6 +2660,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3429,6 +3439,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3587,6 +3598,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3597,6 +3611,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3683,6 +3698,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4414,9 +4430,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4925,6 +4943,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5393,6 +5412,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5438,6 +5458,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5703,6 +5724,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_3_3"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5817,6 +5839,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5916,6 +5939,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5980,6 +6004,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6132,6 +6157,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6372,6 +6398,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6667,6 +6694,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6916,6 +6944,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7206,6 +7235,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7479,6 +7512,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7728,6 +7762,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7841,6 +7876,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7958,6 +7994,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8096,6 +8133,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8189,6 +8227,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8466,6 +8505,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8609,6 +8649,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8645,6 +8686,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9106,6 +9148,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9348,6 +9391,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index bfe57849529..5902d3d2d0a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1875,6 +1877,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2080,7 +2083,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2189,6 +2194,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2506,6 +2512,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2582,6 +2589,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2594,6 +2602,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2647,6 +2656,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3422,6 +3432,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3579,6 +3590,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3589,6 +3603,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3674,6 +3689,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4403,9 +4419,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4914,6 +4932,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5377,6 +5396,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5422,6 +5442,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5686,6 +5707,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5800,6 +5822,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5899,6 +5922,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5963,6 +5987,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6115,6 +6140,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6354,6 +6380,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6648,6 +6675,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6897,6 +6925,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7187,6 +7216,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7460,6 +7493,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7709,6 +7743,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7821,6 +7856,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7937,6 +7973,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8075,6 +8112,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8168,6 +8206,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8444,6 +8483,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8586,6 +8626,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8622,6 +8663,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9080,6 +9122,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9322,6 +9365,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 881dfeaa62e..a488786d3ad 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1875,6 +1877,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2080,7 +2083,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2189,6 +2194,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2506,6 +2512,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2582,6 +2589,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2594,6 +2602,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2647,6 +2656,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3421,6 +3431,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3578,6 +3589,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3588,6 +3602,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3673,6 +3688,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4402,9 +4418,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4913,6 +4931,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5374,6 +5393,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5419,6 +5439,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5683,6 +5704,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5797,6 +5819,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5896,6 +5919,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5960,6 +5984,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6112,6 +6137,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6351,6 +6377,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6645,6 +6672,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6894,6 +6922,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7184,6 +7213,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7457,6 +7490,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7706,6 +7740,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7818,6 +7853,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7934,6 +7970,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8072,6 +8109,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8165,6 +8203,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8441,6 +8480,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8583,6 +8623,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8619,6 +8660,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9077,6 +9119,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9319,6 +9362,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 9be52c89fe4..3ae2f86b854 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1875,6 +1877,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2080,7 +2083,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2189,6 +2194,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2506,6 +2512,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2582,6 +2589,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2594,6 +2602,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2647,6 +2656,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3421,6 +3431,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3578,6 +3589,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3588,6 +3602,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3673,6 +3688,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4402,9 +4418,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4913,6 +4931,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5374,6 +5393,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5419,6 +5439,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5683,6 +5704,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5797,6 +5819,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5896,6 +5919,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5960,6 +5984,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6112,6 +6137,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6351,6 +6377,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6645,6 +6672,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6894,6 +6922,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7184,6 +7213,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7457,6 +7490,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7706,6 +7740,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7818,6 +7853,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7934,6 +7970,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8072,6 +8109,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8165,6 +8203,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8441,6 +8480,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8583,6 +8623,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8619,6 +8660,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9077,6 +9119,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9319,6 +9362,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 5c278cc91c0..6fdfa9b2af2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1875,6 +1877,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2080,7 +2083,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2189,6 +2194,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2506,6 +2512,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2582,6 +2589,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2594,6 +2602,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2647,6 +2656,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3421,6 +3431,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3578,6 +3589,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3588,6 +3602,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3673,6 +3688,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4401,9 +4417,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4912,6 +4930,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5373,6 +5392,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5418,6 +5438,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5682,6 +5703,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5796,6 +5818,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5895,6 +5918,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5959,6 +5983,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6111,6 +6136,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6350,6 +6376,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6644,6 +6671,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6893,6 +6921,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7183,6 +7212,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7456,6 +7489,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7705,6 +7739,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7817,6 +7852,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7933,6 +7969,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8071,6 +8108,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8164,6 +8202,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8440,6 +8479,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8581,6 +8621,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8617,6 +8658,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9075,6 +9117,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9317,6 +9360,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index b2682cb4f13..fba79cca9bd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -431,6 +432,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1873,6 +1875,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2078,7 +2081,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2187,6 +2192,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2503,6 +2509,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2579,6 +2586,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2591,6 +2599,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2644,6 +2653,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3418,6 +3428,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3575,6 +3586,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3585,6 +3599,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3670,6 +3685,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4398,9 +4414,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4909,6 +4927,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5370,6 +5389,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5415,6 +5435,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5679,6 +5700,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5793,6 +5815,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5892,6 +5915,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5956,6 +5980,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6108,6 +6133,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6347,6 +6373,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6641,6 +6668,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6890,6 +6918,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7180,6 +7209,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7452,6 +7485,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7701,6 +7735,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7813,6 +7848,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7929,6 +7965,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8067,6 +8104,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8160,6 +8198,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8436,6 +8475,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8577,6 +8617,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8613,6 +8654,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9071,6 +9113,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9313,6 +9356,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index bf8c9eb0b04..df51f615b27 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -431,6 +432,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1872,6 +1874,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2077,7 +2080,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2185,6 +2190,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2501,6 +2507,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2576,6 +2583,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2588,6 +2596,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2641,6 +2650,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3415,6 +3425,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3572,6 +3583,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3582,6 +3596,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3667,6 +3682,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4395,9 +4411,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4906,6 +4924,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5367,6 +5386,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5412,6 +5432,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5676,6 +5697,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5790,6 +5812,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5889,6 +5912,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5953,6 +5977,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6105,6 +6130,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6342,6 +6368,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6636,6 +6663,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6885,6 +6913,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7175,6 +7204,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7446,6 +7479,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7695,6 +7729,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7807,6 +7842,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7923,6 +7959,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8061,6 +8098,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8154,6 +8192,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8429,6 +8468,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8570,6 +8610,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8606,6 +8647,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9064,6 +9106,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9306,6 +9349,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 05852c538a5..17a5abbc529 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1876,6 +1878,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2082,7 +2085,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2191,6 +2196,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2508,6 +2514,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2584,6 +2591,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2596,6 +2604,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2649,6 +2658,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3427,6 +3437,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3585,6 +3596,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3595,6 +3609,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3680,6 +3695,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4411,9 +4427,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4922,6 +4940,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5390,6 +5409,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5435,6 +5455,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5700,6 +5721,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_3_3"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5814,6 +5836,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5913,6 +5936,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5977,6 +6001,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6129,6 +6154,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6369,6 +6395,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6663,6 +6690,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6912,6 +6940,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7202,6 +7231,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7475,6 +7508,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7724,6 +7758,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7836,6 +7871,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7953,6 +7989,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8091,6 +8128,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8184,6 +8222,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8461,6 +8500,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8604,6 +8644,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8640,6 +8681,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9101,6 +9143,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9343,6 +9386,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 2aef19ffcd2..45e8cd33c16 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1875,6 +1877,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2081,7 +2084,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2190,6 +2195,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2507,6 +2513,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2583,6 +2590,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2595,6 +2603,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2648,6 +2657,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3425,6 +3435,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3583,6 +3594,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3593,6 +3607,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3678,6 +3693,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4408,9 +4424,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4919,6 +4937,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5387,6 +5406,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5432,6 +5452,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5697,6 +5718,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_3_3"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5811,6 +5833,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5910,6 +5933,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5974,6 +5998,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6126,6 +6151,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6365,6 +6391,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6659,6 +6686,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6908,6 +6936,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7198,6 +7227,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7471,6 +7504,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7720,6 +7754,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7832,6 +7867,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7949,6 +7985,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8087,6 +8124,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8180,6 +8218,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8457,6 +8496,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8599,6 +8639,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8635,6 +8676,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9096,6 +9138,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9338,6 +9381,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 5a546217a35..2456073a420 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1875,6 +1877,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2080,7 +2083,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2189,6 +2194,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2506,6 +2512,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2582,6 +2589,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2594,6 +2602,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2647,6 +2656,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3424,6 +3434,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3582,6 +3593,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3592,6 +3606,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3677,6 +3692,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4407,9 +4423,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4918,6 +4936,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5386,6 +5405,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5431,6 +5451,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5696,6 +5717,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_3_3"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5810,6 +5832,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5909,6 +5932,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5973,6 +5997,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6125,6 +6150,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6364,6 +6390,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6658,6 +6685,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6907,6 +6935,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7197,6 +7226,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7470,6 +7503,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7719,6 +7753,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7831,6 +7866,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7948,6 +7984,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8086,6 +8123,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8179,6 +8217,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8456,6 +8495,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8598,6 +8638,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8634,6 +8675,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9093,6 +9135,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9335,6 +9378,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index eb3a19da6a5..75985a07aef 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1875,6 +1877,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2080,7 +2083,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2189,6 +2194,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2506,6 +2512,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2582,6 +2589,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2594,6 +2602,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2647,6 +2656,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3424,6 +3434,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3582,6 +3593,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3592,6 +3606,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3677,6 +3692,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4407,9 +4423,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4918,6 +4936,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5381,6 +5400,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5426,6 +5446,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5691,6 +5712,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_3_3"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5805,6 +5827,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5904,6 +5927,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5968,6 +5992,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6120,6 +6145,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6359,6 +6385,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6653,6 +6680,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6902,6 +6930,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7192,6 +7221,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7465,6 +7498,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7714,6 +7748,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7826,6 +7861,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7943,6 +7979,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8081,6 +8118,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8174,6 +8212,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8451,6 +8490,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8593,6 +8633,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8629,6 +8670,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9088,6 +9130,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9330,6 +9373,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 456b208b980..a588ecaeff9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1875,6 +1877,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2080,7 +2083,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2189,6 +2194,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2506,6 +2512,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2582,6 +2589,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2594,6 +2602,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2647,6 +2656,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3422,6 +3432,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3580,6 +3591,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3590,6 +3604,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3675,6 +3690,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4404,9 +4420,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4915,6 +4933,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5378,6 +5397,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5423,6 +5443,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5687,6 +5708,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5801,6 +5823,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5900,6 +5923,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5964,6 +5988,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6116,6 +6141,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_12"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6355,6 +6381,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6649,6 +6676,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6898,6 +6926,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7188,6 +7217,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7461,6 +7494,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7710,6 +7744,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7822,6 +7857,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7939,6 +7975,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8077,6 +8114,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8170,6 +8208,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8447,6 +8486,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8589,6 +8629,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8625,6 +8666,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9083,6 +9125,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9325,6 +9368,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index a933be151b7..7a8aa5bc545 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1875,6 +1877,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2080,7 +2083,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2189,6 +2194,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2506,6 +2512,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2582,6 +2589,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2594,6 +2602,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2647,6 +2656,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3422,6 +3432,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3579,6 +3590,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3589,6 +3603,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3674,6 +3689,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4403,9 +4419,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4914,6 +4932,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5377,6 +5396,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5422,6 +5442,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5686,6 +5707,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5800,6 +5822,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5899,6 +5922,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5963,6 +5987,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6115,6 +6140,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_12"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6354,6 +6380,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6648,6 +6675,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6897,6 +6925,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7187,6 +7216,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7460,6 +7493,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7709,6 +7743,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7821,6 +7856,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7938,6 +7974,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8076,6 +8113,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8169,6 +8207,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8446,6 +8485,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8588,6 +8628,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8624,6 +8665,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9082,6 +9124,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9324,6 +9367,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index d7bedfd0bc0..bbe9bb5c785 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1864,6 +1866,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2070,7 +2073,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2177,6 +2182,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2491,6 +2497,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2566,6 +2573,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2578,6 +2586,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2631,6 +2640,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3404,6 +3414,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3562,6 +3573,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3572,6 +3586,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3657,6 +3672,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4383,9 +4399,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4892,6 +4910,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5346,6 +5365,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5391,6 +5411,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5651,6 +5672,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5765,6 +5787,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5863,6 +5886,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5926,6 +5950,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6078,6 +6103,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6310,6 +6336,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6601,6 +6628,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_1"; "palindromes" = dontDistribute super."palindromes"; @@ -6849,6 +6877,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7140,6 +7169,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7411,6 +7444,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7660,6 +7694,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7770,6 +7805,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7886,6 +7922,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8021,6 +8058,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8114,6 +8152,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8387,6 +8426,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8528,6 +8568,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8564,6 +8605,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9021,6 +9063,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9261,6 +9304,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 31db8fe1440..9c133a7d90e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1864,6 +1866,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2070,7 +2073,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2177,6 +2182,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2491,6 +2497,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2566,6 +2573,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2578,6 +2586,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2631,6 +2640,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3404,6 +3414,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3562,6 +3573,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3572,6 +3586,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3657,6 +3672,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4383,9 +4399,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4892,6 +4910,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5346,6 +5365,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_2"; "json-sop" = dontDistribute super."json-sop"; @@ -5391,6 +5411,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5651,6 +5672,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5765,6 +5787,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5863,6 +5886,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5926,6 +5950,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6078,6 +6103,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6310,6 +6336,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6601,6 +6628,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_1"; "palindromes" = dontDistribute super."palindromes"; @@ -6849,6 +6877,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7140,6 +7169,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7411,6 +7444,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7660,6 +7694,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7770,6 +7805,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7886,6 +7922,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8021,6 +8058,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8114,6 +8152,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8387,6 +8426,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8528,6 +8568,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8564,6 +8605,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9021,6 +9063,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9261,6 +9304,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index e98942f659b..2bf1ca1242c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1858,6 +1860,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2063,7 +2066,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2170,6 +2175,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2483,6 +2489,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2558,6 +2565,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2570,6 +2578,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2622,6 +2631,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3391,6 +3401,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3549,6 +3560,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3559,6 +3573,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3644,6 +3659,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4369,9 +4385,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4878,6 +4896,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5328,6 +5347,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_5"; "json-sop" = dontDistribute super."json-sop"; @@ -5373,6 +5393,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5632,6 +5653,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5746,6 +5768,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5844,6 +5867,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5907,6 +5931,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6059,6 +6084,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6291,6 +6317,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6582,6 +6609,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6829,6 +6857,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7120,6 +7149,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7389,6 +7422,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7637,6 +7671,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7747,6 +7782,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7863,6 +7899,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7997,6 +8034,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8090,6 +8128,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8356,6 +8395,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8497,6 +8537,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8533,6 +8574,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8988,6 +9030,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9228,6 +9271,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index c8ae32d7c38..dce16c62c95 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1857,6 +1859,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2062,7 +2065,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2169,6 +2174,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2482,6 +2488,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2557,6 +2564,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2569,6 +2577,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2621,6 +2630,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3390,6 +3400,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3548,6 +3559,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3558,6 +3572,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3643,6 +3658,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4368,9 +4384,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4877,6 +4895,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5327,6 +5346,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_6"; "json-sop" = dontDistribute super."json-sop"; @@ -5372,6 +5392,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5631,6 +5652,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5745,6 +5767,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5843,6 +5866,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5906,6 +5930,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6058,6 +6083,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6290,6 +6316,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6580,6 +6607,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6827,6 +6855,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7118,6 +7147,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7387,6 +7420,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7634,6 +7668,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7744,6 +7779,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7860,6 +7896,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7994,6 +8031,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8087,6 +8125,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8352,6 +8391,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8493,6 +8533,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8529,6 +8570,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8984,6 +9026,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9224,6 +9267,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 6750cb2d5d1..5d6a40dc3dd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1857,6 +1859,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2062,7 +2065,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2169,6 +2174,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2482,6 +2488,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2557,6 +2564,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2569,6 +2577,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2621,6 +2630,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3390,6 +3400,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3548,6 +3559,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3558,6 +3572,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3643,6 +3658,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4368,9 +4384,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4877,6 +4895,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5327,6 +5346,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_6"; "json-sop" = dontDistribute super."json-sop"; @@ -5372,6 +5392,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5631,6 +5652,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5745,6 +5767,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5843,6 +5866,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5906,6 +5930,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6058,6 +6083,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6290,6 +6316,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6580,6 +6607,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6827,6 +6855,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7118,6 +7147,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7387,6 +7420,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7634,6 +7668,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7743,6 +7778,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7859,6 +7895,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7993,6 +8030,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8086,6 +8124,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8351,6 +8390,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8492,6 +8532,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8528,6 +8569,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8983,6 +9025,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9223,6 +9266,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 61125b12723..68e7a0c544b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1857,6 +1859,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2062,7 +2065,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2169,6 +2174,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2482,6 +2488,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2557,6 +2564,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2569,6 +2577,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2621,6 +2630,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3390,6 +3400,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3548,6 +3559,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3558,6 +3572,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3643,6 +3658,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4368,9 +4384,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4877,6 +4895,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5326,6 +5345,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_6"; "json-sop" = dontDistribute super."json-sop"; @@ -5371,6 +5391,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5630,6 +5651,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5744,6 +5766,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5842,6 +5865,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5905,6 +5929,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6057,6 +6082,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6289,6 +6315,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6579,6 +6606,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6826,6 +6854,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7117,6 +7146,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7386,6 +7419,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7633,6 +7667,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7742,6 +7777,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7858,6 +7894,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7992,6 +8029,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8085,6 +8123,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8350,6 +8389,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8491,6 +8531,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8527,6 +8568,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8982,6 +9024,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9222,6 +9265,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index d8cf7ce903f..b9fb7d6f8a5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1857,6 +1859,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2062,7 +2065,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2169,6 +2174,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2482,6 +2488,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2557,6 +2564,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2569,6 +2577,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2621,6 +2630,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3389,6 +3399,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3547,6 +3558,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3557,6 +3571,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3642,6 +3657,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4367,9 +4383,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4875,6 +4893,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5324,6 +5343,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_6"; "json-sop" = dontDistribute super."json-sop"; @@ -5369,6 +5389,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5628,6 +5649,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5742,6 +5764,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5840,6 +5863,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5903,6 +5927,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6055,6 +6080,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6287,6 +6313,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6577,6 +6604,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6824,6 +6852,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7115,6 +7144,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7384,6 +7417,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7631,6 +7665,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7740,6 +7775,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7856,6 +7892,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7990,6 +8027,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8083,6 +8121,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8348,6 +8387,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8489,6 +8529,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8525,6 +8566,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8980,6 +9022,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9220,6 +9263,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index b5ac5df9262..18a31397b64 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1857,6 +1859,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2062,7 +2065,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2169,6 +2174,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2482,6 +2488,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2557,6 +2564,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2569,6 +2577,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2621,6 +2630,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3388,6 +3398,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3546,6 +3557,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3556,6 +3570,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3641,6 +3656,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4366,9 +4382,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4874,6 +4892,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5323,6 +5342,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_6"; "json-sop" = dontDistribute super."json-sop"; @@ -5368,6 +5388,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5627,6 +5648,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5741,6 +5763,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5839,6 +5862,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5902,6 +5926,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6054,6 +6079,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6285,6 +6311,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6575,6 +6602,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6822,6 +6850,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7113,6 +7142,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7382,6 +7415,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7629,6 +7663,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7738,6 +7773,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7854,6 +7890,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7988,6 +8025,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8080,6 +8118,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8345,6 +8384,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8486,6 +8526,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8522,6 +8563,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8977,6 +9019,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9217,6 +9260,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index d1cefdb9f1a..fb751d3e2f9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1857,6 +1859,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2062,7 +2065,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2168,6 +2173,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2481,6 +2487,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2556,6 +2563,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2568,6 +2576,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2620,6 +2629,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3385,6 +3395,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3543,6 +3554,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3553,6 +3567,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3638,6 +3653,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4363,9 +4379,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4871,6 +4889,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5320,6 +5339,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_6"; "json-sop" = dontDistribute super."json-sop"; @@ -5365,6 +5385,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5623,6 +5644,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5737,6 +5759,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5835,6 +5858,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5898,6 +5922,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6050,6 +6075,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6281,6 +6307,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6571,6 +6598,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6818,6 +6846,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7109,6 +7138,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7378,6 +7411,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7625,6 +7659,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7734,6 +7769,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7850,6 +7886,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7984,6 +8021,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8076,6 +8114,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8341,6 +8380,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8482,6 +8522,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8518,6 +8559,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8973,6 +9015,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9213,6 +9256,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 62817592f11..90ca70be0eb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1856,6 +1858,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2061,7 +2064,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2167,6 +2172,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2480,6 +2486,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2555,6 +2562,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2567,6 +2575,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2619,6 +2628,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3382,6 +3392,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3540,6 +3551,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3550,6 +3564,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3635,6 +3650,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4360,9 +4376,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4868,6 +4886,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5317,6 +5336,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_7"; "json-sop" = dontDistribute super."json-sop"; @@ -5362,6 +5382,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5620,6 +5641,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5734,6 +5756,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5832,6 +5855,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5895,6 +5919,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6047,6 +6072,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6278,6 +6304,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6567,6 +6594,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6814,6 +6842,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7105,6 +7134,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7374,6 +7407,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7621,6 +7655,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7730,6 +7765,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7846,6 +7882,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7980,6 +8017,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8072,6 +8110,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8337,6 +8376,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8478,6 +8518,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8514,6 +8555,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8969,6 +9011,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9209,6 +9252,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 12e7a63a99c..83cef991962 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1856,6 +1858,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2060,7 +2063,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2166,6 +2171,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2479,6 +2485,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2554,6 +2561,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2566,6 +2574,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2618,6 +2627,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3380,6 +3390,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3538,6 +3549,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3548,6 +3562,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3633,6 +3648,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4358,9 +4374,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4866,6 +4884,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5315,6 +5334,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_7"; "json-sop" = dontDistribute super."json-sop"; @@ -5360,6 +5380,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5618,6 +5639,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5732,6 +5754,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_1_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5830,6 +5853,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5893,6 +5917,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6045,6 +6070,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6276,6 +6302,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6564,6 +6591,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6811,6 +6839,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7102,6 +7131,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7371,6 +7404,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7618,6 +7652,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7727,6 +7762,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7843,6 +7879,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7977,6 +8014,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8069,6 +8107,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8334,6 +8373,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8475,6 +8515,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8511,6 +8552,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8966,6 +9008,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9206,6 +9249,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index c76562a5ae9..f4452f3e69b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1856,6 +1858,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2060,7 +2063,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2166,6 +2171,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2479,6 +2485,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2554,6 +2561,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2566,6 +2574,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2618,6 +2627,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3379,6 +3389,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3537,6 +3548,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3547,6 +3561,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3632,6 +3647,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4357,9 +4373,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4865,6 +4883,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5314,6 +5333,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_7"; "json-sop" = dontDistribute super."json-sop"; @@ -5359,6 +5379,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5617,6 +5638,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5731,6 +5753,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_1_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5829,6 +5852,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5892,6 +5916,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6044,6 +6069,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6275,6 +6301,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6563,6 +6590,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6810,6 +6838,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7101,6 +7130,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7370,6 +7403,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7617,6 +7651,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7726,6 +7761,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7842,6 +7878,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7976,6 +8013,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8068,6 +8106,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8333,6 +8372,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8474,6 +8514,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8510,6 +8551,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8965,6 +9007,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9205,6 +9248,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 540f6a33be0..18a5fc3ef85 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1863,6 +1865,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2068,7 +2071,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2175,6 +2180,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2489,6 +2495,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2564,6 +2571,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2576,6 +2584,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2629,6 +2638,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3402,6 +3412,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3560,6 +3571,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3570,6 +3584,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3655,6 +3670,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4381,9 +4397,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4890,6 +4908,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5344,6 +5363,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_3"; "json-sop" = dontDistribute super."json-sop"; @@ -5389,6 +5409,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5649,6 +5670,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5763,6 +5785,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5861,6 +5884,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5924,6 +5948,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6076,6 +6101,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6308,6 +6334,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6599,6 +6626,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_1"; "palindromes" = dontDistribute super."palindromes"; @@ -6847,6 +6875,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7138,6 +7167,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7409,6 +7442,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7658,6 +7692,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7768,6 +7803,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7884,6 +7920,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8019,6 +8056,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8112,6 +8150,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8385,6 +8424,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8526,6 +8566,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8562,6 +8603,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9019,6 +9061,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9259,6 +9302,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index ee32b47ad0b..1d03c9d5b80 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1856,6 +1858,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2060,7 +2063,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2166,6 +2171,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2479,6 +2485,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2554,6 +2561,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2566,6 +2574,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2618,6 +2627,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3379,6 +3389,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3537,6 +3548,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3547,6 +3561,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3632,6 +3647,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4357,9 +4373,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4865,6 +4883,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5314,6 +5333,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_7"; "json-sop" = dontDistribute super."json-sop"; @@ -5359,6 +5379,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5617,6 +5638,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5731,6 +5753,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_2"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5829,6 +5852,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5892,6 +5916,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6044,6 +6069,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6275,6 +6301,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6563,6 +6590,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6810,6 +6838,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7101,6 +7130,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7370,6 +7403,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7617,6 +7651,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7726,6 +7761,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7841,6 +7877,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7975,6 +8012,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8067,6 +8105,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8332,6 +8371,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8473,6 +8513,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8509,6 +8550,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8964,6 +9006,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9204,6 +9247,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 744ce37cb1d..e5f16f9bbb2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1856,6 +1858,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2060,7 +2063,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2166,6 +2171,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2479,6 +2485,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2554,6 +2561,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2566,6 +2574,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2618,6 +2627,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3379,6 +3389,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3537,6 +3548,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3547,6 +3561,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3632,6 +3647,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4357,9 +4373,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4865,6 +4883,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5314,6 +5333,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_7"; "json-sop" = dontDistribute super."json-sop"; @@ -5359,6 +5379,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5617,6 +5638,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5731,6 +5753,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_2"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5829,6 +5852,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5892,6 +5916,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6044,6 +6069,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6275,6 +6301,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6563,6 +6590,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6810,6 +6838,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7100,6 +7129,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7369,6 +7402,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7616,6 +7650,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7725,6 +7760,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7840,6 +7876,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7974,6 +8011,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8066,6 +8104,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8331,6 +8370,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8472,6 +8512,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8508,6 +8549,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8963,6 +9005,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9203,6 +9246,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 1ca17474a51..66c6adc3881 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1856,6 +1858,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2060,7 +2063,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2166,6 +2171,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2479,6 +2485,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2554,6 +2561,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2566,6 +2574,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2618,6 +2627,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3379,6 +3389,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3537,6 +3548,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3547,6 +3561,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3632,6 +3647,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4357,9 +4373,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4864,6 +4882,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5313,6 +5332,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5358,6 +5378,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5616,6 +5637,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5730,6 +5752,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_2"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5828,6 +5851,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5891,6 +5915,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6043,6 +6068,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6274,6 +6300,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6562,6 +6589,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6809,6 +6837,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7099,6 +7128,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7368,6 +7401,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7615,6 +7649,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7724,6 +7759,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7839,6 +7875,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7973,6 +8010,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8065,6 +8103,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8330,6 +8369,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8471,6 +8511,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8507,6 +8548,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8962,6 +9004,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9202,6 +9245,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 65521fa360c..eb35a0931db 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1863,6 +1865,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2068,7 +2071,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2175,6 +2180,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2489,6 +2495,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2564,6 +2571,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2576,6 +2584,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2629,6 +2638,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3401,6 +3411,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3559,6 +3570,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3569,6 +3583,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3654,6 +3669,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4380,9 +4396,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4889,6 +4907,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5342,6 +5361,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_4"; "json-sop" = dontDistribute super."json-sop"; @@ -5387,6 +5407,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5647,6 +5668,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5761,6 +5783,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5859,6 +5882,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5922,6 +5946,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6074,6 +6099,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6306,6 +6332,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6597,6 +6624,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_1"; "palindromes" = dontDistribute super."palindromes"; @@ -6845,6 +6873,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7136,6 +7165,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7407,6 +7440,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7656,6 +7690,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7766,6 +7801,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7882,6 +7918,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8017,6 +8054,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8110,6 +8148,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8383,6 +8422,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8524,6 +8564,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8560,6 +8601,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9017,6 +9059,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9257,6 +9300,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 589429db307..35bf5af61ff 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1863,6 +1865,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2068,7 +2071,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2175,6 +2180,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2489,6 +2495,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2564,6 +2571,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2576,6 +2584,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2629,6 +2638,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3401,6 +3411,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3559,6 +3570,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3569,6 +3583,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3654,6 +3669,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4380,9 +4396,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4889,6 +4907,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5342,6 +5361,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_4"; "json-sop" = dontDistribute super."json-sop"; @@ -5387,6 +5407,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5647,6 +5668,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5761,6 +5783,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5859,6 +5882,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5922,6 +5946,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6074,6 +6099,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6306,6 +6332,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6597,6 +6624,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6844,6 +6872,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7135,6 +7164,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7405,6 +7438,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7654,6 +7688,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7764,6 +7799,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7880,6 +7916,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8015,6 +8052,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8108,6 +8146,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8381,6 +8420,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8522,6 +8562,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8558,6 +8599,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9015,6 +9057,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9255,6 +9298,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index e70c6e29102..c0754e8c86e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1863,6 +1865,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2068,7 +2071,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2175,6 +2180,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2488,6 +2494,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2563,6 +2570,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2575,6 +2583,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2628,6 +2637,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3400,6 +3410,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3558,6 +3569,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3568,6 +3582,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3653,6 +3668,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4379,9 +4395,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4888,6 +4906,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5341,6 +5360,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_4"; "json-sop" = dontDistribute super."json-sop"; @@ -5386,6 +5406,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5646,6 +5667,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5760,6 +5782,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5858,6 +5881,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5921,6 +5945,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6073,6 +6098,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6305,6 +6331,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6596,6 +6623,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6843,6 +6871,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7134,6 +7163,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7404,6 +7437,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7653,6 +7687,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7763,6 +7798,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7879,6 +7915,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8014,6 +8051,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8107,6 +8145,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8380,6 +8419,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8521,6 +8561,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8557,6 +8598,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9014,6 +9056,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9254,6 +9297,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 4bce5603ac1..5f6fb229a54 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1861,6 +1863,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2066,7 +2069,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2173,6 +2178,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2486,6 +2492,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2561,6 +2568,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2573,6 +2581,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2626,6 +2635,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3398,6 +3408,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3556,6 +3567,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3566,6 +3580,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3651,6 +3666,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4376,9 +4392,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4885,6 +4903,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5338,6 +5357,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_4"; "json-sop" = dontDistribute super."json-sop"; @@ -5383,6 +5403,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5643,6 +5664,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5757,6 +5779,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5855,6 +5878,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5918,6 +5942,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6070,6 +6095,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6301,6 +6327,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6592,6 +6619,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6839,6 +6867,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7130,6 +7159,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7400,6 +7433,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7649,6 +7683,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7759,6 +7794,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7875,6 +7911,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8010,6 +8047,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8103,6 +8141,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8376,6 +8415,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8517,6 +8557,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8553,6 +8594,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9008,6 +9050,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9248,6 +9291,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 96b0b5cc31a..741603cc89d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1861,6 +1863,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2066,7 +2069,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2173,6 +2178,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2486,6 +2492,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2561,6 +2568,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2573,6 +2581,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2626,6 +2635,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3398,6 +3408,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3556,6 +3567,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3566,6 +3580,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3651,6 +3666,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4376,9 +4392,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4885,6 +4903,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5338,6 +5357,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_4"; "json-sop" = dontDistribute super."json-sop"; @@ -5383,6 +5403,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5643,6 +5664,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5757,6 +5779,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5855,6 +5878,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5918,6 +5942,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6070,6 +6095,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6302,6 +6328,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6593,6 +6620,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6840,6 +6868,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7131,6 +7160,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7401,6 +7434,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7650,6 +7684,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7760,6 +7795,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7876,6 +7912,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8011,6 +8048,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8104,6 +8142,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8377,6 +8416,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8518,6 +8558,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8554,6 +8595,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9009,6 +9051,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9249,6 +9292,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index e3f56a38ef6..aaf7d8ed806 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1860,6 +1862,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2065,7 +2068,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2172,6 +2177,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2485,6 +2491,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2560,6 +2567,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2572,6 +2580,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2625,6 +2634,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3396,6 +3406,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3554,6 +3565,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3564,6 +3578,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3649,6 +3664,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4374,9 +4390,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4883,6 +4901,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5336,6 +5355,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_4"; "json-sop" = dontDistribute super."json-sop"; @@ -5381,6 +5401,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5641,6 +5662,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5755,6 +5777,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5853,6 +5876,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5916,6 +5940,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6068,6 +6093,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6300,6 +6326,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6591,6 +6618,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6838,6 +6866,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7129,6 +7158,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7399,6 +7432,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7647,6 +7681,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7757,6 +7792,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7873,6 +7909,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8007,6 +8044,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8100,6 +8138,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8371,6 +8410,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8512,6 +8552,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8548,6 +8589,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9003,6 +9045,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9243,6 +9286,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 2e5c024af52..e894b57599c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1858,6 +1860,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2063,7 +2066,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2170,6 +2175,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2483,6 +2489,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2558,6 +2565,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2570,6 +2578,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2623,6 +2632,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3392,6 +3402,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3550,6 +3561,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3560,6 +3574,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3645,6 +3660,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4370,9 +4386,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4879,6 +4897,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5331,6 +5350,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_5"; "json-sop" = dontDistribute super."json-sop"; @@ -5376,6 +5396,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5635,6 +5656,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5749,6 +5771,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5847,6 +5870,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5910,6 +5934,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6062,6 +6087,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6294,6 +6320,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6585,6 +6612,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6832,6 +6860,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7123,6 +7152,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7393,6 +7426,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7641,6 +7675,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7751,6 +7786,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7867,6 +7903,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8001,6 +8038,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8094,6 +8132,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8361,6 +8400,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8502,6 +8542,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8538,6 +8579,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8993,6 +9035,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9233,6 +9276,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 785f9b4bbf0..c9f4481be8f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1811,6 +1813,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2012,7 +2015,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2117,6 +2122,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2427,6 +2433,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2502,6 +2509,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2514,6 +2522,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2564,6 +2573,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3309,6 +3319,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3466,6 +3477,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3476,6 +3490,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3560,6 +3575,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4120,6 +4136,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4278,9 +4295,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4778,6 +4797,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5213,6 +5233,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5258,6 +5279,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5509,6 +5531,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5621,6 +5644,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_2"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5658,6 +5682,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5717,6 +5742,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5780,6 +5806,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5927,6 +5954,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6154,6 +6182,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6317,6 +6346,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6436,6 +6466,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6676,6 +6707,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6964,6 +6996,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7235,6 +7271,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7483,6 +7520,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_0_0"; @@ -7585,6 +7623,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7700,6 +7739,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7835,6 +7875,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7925,6 +7966,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_3_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8181,6 +8223,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8321,6 +8364,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8357,6 +8401,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8803,6 +8848,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9039,6 +9085,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index e2804c9e689..4ca49045ed8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1810,6 +1812,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2011,7 +2014,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2116,6 +2121,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2426,6 +2432,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2501,6 +2508,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2513,6 +2521,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2563,6 +2572,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3307,6 +3317,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3464,6 +3475,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3474,6 +3488,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3558,6 +3573,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4118,6 +4134,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4276,9 +4293,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4776,6 +4795,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5211,6 +5231,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5256,6 +5277,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5507,6 +5529,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5619,6 +5642,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_2"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5656,6 +5680,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5714,6 +5739,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5777,6 +5803,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5924,6 +5951,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6151,6 +6179,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6314,6 +6343,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6433,6 +6463,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6672,6 +6703,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6960,6 +6992,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7231,6 +7267,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7478,6 +7515,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_0_0"; @@ -7580,6 +7618,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7695,6 +7734,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7830,6 +7870,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7920,6 +7961,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_3_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8176,6 +8218,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8316,6 +8359,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8352,6 +8396,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8798,6 +8843,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9033,6 +9079,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 823b01c4c89..93738600458 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1803,6 +1805,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2004,7 +2007,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2109,6 +2114,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2418,6 +2424,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2493,6 +2500,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2505,6 +2513,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2555,6 +2564,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3294,6 +3304,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3451,6 +3462,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3461,6 +3475,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3544,6 +3559,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4102,6 +4118,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4259,9 +4276,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4757,6 +4776,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5190,6 +5210,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5235,6 +5256,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5484,6 +5506,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5596,6 +5619,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5633,6 +5657,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5691,6 +5716,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5754,6 +5780,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5900,6 +5927,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6126,6 +6154,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6287,6 +6316,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6406,6 +6436,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6645,6 +6676,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6930,6 +6962,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7200,6 +7236,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7447,6 +7484,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7549,6 +7587,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7664,6 +7703,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7797,6 +7837,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7886,6 +7927,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_6_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8141,6 +8183,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8171,6 +8214,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8277,6 +8321,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8313,6 +8358,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8757,6 +8803,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8990,6 +9037,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index 793438b4421..0f0c6837104 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1803,6 +1805,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2004,7 +2007,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2109,6 +2114,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2418,6 +2424,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2493,6 +2500,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2505,6 +2513,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2555,6 +2564,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3293,6 +3303,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3450,6 +3461,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3460,6 +3474,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3543,6 +3558,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4101,6 +4117,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4258,9 +4275,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4756,6 +4775,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5189,6 +5209,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5234,6 +5255,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5483,6 +5505,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5595,6 +5618,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5632,6 +5656,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5690,6 +5715,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5753,6 +5779,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5899,6 +5926,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6125,6 +6153,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6286,6 +6315,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6405,6 +6435,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6644,6 +6675,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6929,6 +6961,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7199,6 +7235,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7446,6 +7483,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7548,6 +7586,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7663,6 +7702,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7796,6 +7836,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7885,6 +7926,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_6_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8140,6 +8182,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8170,6 +8213,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8276,6 +8320,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8312,6 +8357,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8756,6 +8802,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8989,6 +9036,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index d4c3a236f10..372de3cace5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1803,6 +1805,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2004,7 +2007,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2108,6 +2113,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2417,6 +2423,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2492,6 +2499,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2504,6 +2512,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2554,6 +2563,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3292,6 +3302,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3449,6 +3460,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3459,6 +3473,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3542,6 +3557,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4099,6 +4115,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4256,9 +4273,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4754,6 +4773,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5187,6 +5207,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5232,6 +5253,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5481,6 +5503,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5593,6 +5616,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5630,6 +5654,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5688,6 +5713,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5751,6 +5777,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5897,6 +5924,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6123,6 +6151,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6284,6 +6313,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6403,6 +6433,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6641,6 +6672,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6926,6 +6958,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7196,6 +7232,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7443,6 +7480,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7545,6 +7583,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7660,6 +7699,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7793,6 +7833,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7882,6 +7923,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_6_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8137,6 +8179,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8167,6 +8210,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8272,6 +8316,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8308,6 +8353,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8752,6 +8798,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8985,6 +9032,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 5ae2df82cb5..bcd60522489 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1803,6 +1805,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2004,7 +2007,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2108,6 +2113,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2417,6 +2423,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2492,6 +2499,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2504,6 +2512,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2554,6 +2563,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3292,6 +3302,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3449,6 +3460,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3459,6 +3473,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3542,6 +3557,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4099,6 +4115,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4256,9 +4273,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4753,6 +4772,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5186,6 +5206,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5231,6 +5252,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5479,6 +5501,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5591,6 +5614,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5628,6 +5652,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5686,6 +5711,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5749,6 +5775,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5895,6 +5922,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6121,6 +6149,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6282,6 +6311,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6401,6 +6431,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6638,6 +6669,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6923,6 +6955,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7193,6 +7229,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7440,6 +7477,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7542,6 +7580,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7657,6 +7696,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7790,6 +7830,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7879,6 +7920,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_6_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8134,6 +8176,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8164,6 +8207,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8269,6 +8313,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8305,6 +8350,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8749,6 +8795,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8982,6 +9029,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index c60052a30e0..56065ec833e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1803,6 +1805,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2004,7 +2007,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2108,6 +2113,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2417,6 +2423,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2492,6 +2499,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2504,6 +2512,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2554,6 +2563,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3292,6 +3302,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3449,6 +3460,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3459,6 +3473,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3542,6 +3557,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4099,6 +4115,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4256,9 +4273,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4753,6 +4772,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5185,6 +5205,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5230,6 +5251,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5478,6 +5500,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5590,6 +5613,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5627,6 +5651,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5685,6 +5710,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5748,6 +5774,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5894,6 +5921,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6120,6 +6148,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6281,6 +6310,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6400,6 +6430,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6637,6 +6668,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6922,6 +6954,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7192,6 +7228,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7439,6 +7476,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7541,6 +7579,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7656,6 +7695,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7789,6 +7829,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7878,6 +7919,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_6_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8133,6 +8175,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8163,6 +8206,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8268,6 +8312,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8304,6 +8349,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8748,6 +8794,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8980,6 +9027,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 4cf545c43ad..eea9625cfc9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1803,6 +1805,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2004,7 +2007,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2108,6 +2113,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2417,6 +2423,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2492,6 +2499,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2504,6 +2512,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2554,6 +2563,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3292,6 +3302,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3449,6 +3460,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3459,6 +3473,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3542,6 +3557,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4098,6 +4114,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4255,9 +4272,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4752,6 +4771,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5183,6 +5203,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5228,6 +5249,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5476,6 +5498,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5588,6 +5611,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5625,6 +5649,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5683,6 +5708,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5746,6 +5772,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5892,6 +5919,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6118,6 +6146,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6279,6 +6308,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6398,6 +6428,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6635,6 +6666,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6920,6 +6952,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7190,6 +7226,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7437,6 +7474,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7538,6 +7576,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7653,6 +7692,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7786,6 +7826,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7875,6 +7916,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_8_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8130,6 +8172,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8160,6 +8203,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8265,6 +8309,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8301,6 +8346,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8745,6 +8791,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8977,6 +9024,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index bcb89836ada..605d43e7462 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1802,6 +1804,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2003,7 +2006,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2107,6 +2112,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2416,6 +2422,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2491,6 +2498,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2503,6 +2511,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2553,6 +2562,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3291,6 +3301,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3448,6 +3459,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3458,6 +3472,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3541,6 +3556,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4097,6 +4113,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4254,9 +4271,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4751,6 +4770,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5182,6 +5202,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5227,6 +5248,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5474,6 +5496,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5586,6 +5609,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5623,6 +5647,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5681,6 +5706,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5743,6 +5769,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5889,6 +5916,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6115,6 +6143,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6276,6 +6305,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6395,6 +6425,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6632,6 +6663,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6916,6 +6948,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7185,6 +7221,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7432,6 +7469,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7533,6 +7571,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7648,6 +7687,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7781,6 +7821,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7870,6 +7911,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_8_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8125,6 +8167,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8154,6 +8197,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; @@ -8258,6 +8302,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8294,6 +8339,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8738,6 +8784,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8970,6 +9017,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 30e57374bbf..0b9cef780e2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1801,6 +1803,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2002,7 +2005,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2106,6 +2111,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2415,6 +2421,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2490,6 +2497,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2502,6 +2510,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2552,6 +2561,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3290,6 +3300,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3447,6 +3458,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3457,6 +3471,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3540,6 +3555,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4095,6 +4111,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4252,9 +4269,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4749,6 +4768,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5179,6 +5199,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5224,6 +5245,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5471,6 +5493,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5582,6 +5605,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5619,6 +5643,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5677,6 +5702,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5739,6 +5765,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5885,6 +5912,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6110,6 +6138,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6271,6 +6300,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6390,6 +6420,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6627,6 +6658,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6911,6 +6943,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7180,6 +7216,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7427,6 +7464,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7528,6 +7566,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7643,6 +7682,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7776,6 +7816,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7865,6 +7906,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_10_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8120,6 +8162,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8149,6 +8192,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; @@ -8253,6 +8297,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8289,6 +8334,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8733,6 +8779,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8965,6 +9012,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index dc397c22a69..650c43f15e0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1801,6 +1803,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2002,7 +2005,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2106,6 +2111,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2415,6 +2421,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2490,6 +2497,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2502,6 +2510,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2552,6 +2561,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3290,6 +3300,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3447,6 +3458,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3457,6 +3471,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3540,6 +3555,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4095,6 +4111,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4252,9 +4269,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4749,6 +4768,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5179,6 +5199,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5224,6 +5245,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5471,6 +5493,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5582,6 +5605,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5619,6 +5643,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5677,6 +5702,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5739,6 +5765,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5885,6 +5912,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6110,6 +6138,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6271,6 +6300,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6390,6 +6420,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6627,6 +6658,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6911,6 +6943,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7180,6 +7216,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7427,6 +7464,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7528,6 +7566,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7643,6 +7682,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7776,6 +7816,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7865,6 +7906,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_10_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8120,6 +8162,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8149,6 +8192,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; @@ -8253,6 +8297,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8289,6 +8334,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8733,6 +8779,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8965,6 +9012,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index 2a4d29f3616..1b8fb592432 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1799,6 +1801,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2000,7 +2003,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2104,6 +2109,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2412,6 +2418,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2487,6 +2494,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2499,6 +2507,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2549,6 +2558,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3287,6 +3297,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3444,6 +3455,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3454,6 +3468,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3537,6 +3552,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4092,6 +4108,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4249,9 +4266,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4744,6 +4763,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5174,6 +5194,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5218,6 +5239,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5465,6 +5487,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5576,6 +5599,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5613,6 +5637,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5671,6 +5696,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5733,6 +5759,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5879,6 +5906,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6103,6 +6131,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6264,6 +6293,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6383,6 +6413,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6620,6 +6651,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6904,6 +6936,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7173,6 +7209,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7420,6 +7457,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7521,6 +7559,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7636,6 +7675,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7768,6 +7808,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7857,6 +7898,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_10_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8112,6 +8154,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8141,6 +8184,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; @@ -8245,6 +8289,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8281,6 +8326,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8725,6 +8771,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8957,6 +9004,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 773c5b19847..ed852ba2eec 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1808,6 +1810,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2009,7 +2012,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2114,6 +2119,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2424,6 +2430,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2499,6 +2506,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2511,6 +2519,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2561,6 +2570,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3304,6 +3314,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3461,6 +3472,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3471,6 +3485,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3554,6 +3569,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4114,6 +4130,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4272,9 +4289,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4772,6 +4791,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5207,6 +5227,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5252,6 +5273,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5503,6 +5525,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5615,6 +5638,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_2"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5652,6 +5676,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5710,6 +5735,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5773,6 +5799,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5920,6 +5947,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6147,6 +6175,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6310,6 +6339,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6429,6 +6459,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6668,6 +6699,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6956,6 +6988,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7226,6 +7262,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7473,6 +7510,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7575,6 +7613,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7690,6 +7729,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7824,6 +7864,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7914,6 +7955,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_3_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8170,6 +8212,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8310,6 +8353,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8346,6 +8390,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8792,6 +8837,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9027,6 +9073,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 7dc6e7e26e7..c75fbd244f6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1798,6 +1800,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1999,7 +2002,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2103,6 +2108,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2411,6 +2417,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2486,6 +2493,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2498,6 +2506,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2548,6 +2557,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3286,6 +3296,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3443,6 +3454,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3453,6 +3467,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3536,6 +3551,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4091,6 +4107,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4248,9 +4265,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4743,6 +4762,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5173,6 +5193,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5217,6 +5238,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5464,6 +5486,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5575,6 +5598,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5612,6 +5636,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5670,6 +5695,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5732,6 +5758,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5878,6 +5905,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6102,6 +6130,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6263,6 +6292,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6382,6 +6412,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6619,6 +6650,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6903,6 +6935,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7171,6 +7207,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7418,6 +7455,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7519,6 +7557,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7634,6 +7673,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7766,6 +7806,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7855,6 +7896,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_10_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8109,6 +8151,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_6"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8138,6 +8181,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; @@ -8242,6 +8286,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8278,6 +8323,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8722,6 +8768,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8954,6 +9001,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index c0cdf4eee8d..a3a576bffbd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1798,6 +1800,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1999,7 +2002,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2103,6 +2108,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2410,6 +2416,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2485,6 +2492,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2497,6 +2505,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2547,6 +2556,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3283,6 +3293,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3440,6 +3451,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3450,6 +3464,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3533,6 +3548,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4088,6 +4104,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4245,9 +4262,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4740,6 +4759,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5168,6 +5188,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5212,6 +5233,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5459,6 +5481,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5570,6 +5593,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5607,6 +5631,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5665,6 +5690,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5727,6 +5753,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5873,6 +5900,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6097,6 +6125,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6258,6 +6287,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6377,6 +6407,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6613,6 +6644,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6897,6 +6929,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7165,6 +7201,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7412,6 +7449,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7510,6 +7548,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7625,6 +7664,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7756,6 +7796,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7845,6 +7886,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_10_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8099,6 +8141,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_6"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8128,6 +8171,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; @@ -8232,6 +8276,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8268,6 +8313,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8712,6 +8758,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8942,6 +8989,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index 0c9103e4e02..08ab10f165e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1798,6 +1800,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1999,7 +2002,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2103,6 +2108,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2410,6 +2416,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2485,6 +2492,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2497,6 +2505,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2547,6 +2556,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3282,6 +3292,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3439,6 +3450,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3449,6 +3463,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3532,6 +3547,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4087,6 +4103,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4244,9 +4261,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4739,6 +4758,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5165,6 +5185,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5209,6 +5230,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5456,6 +5478,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5567,6 +5590,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5604,6 +5628,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5662,6 +5687,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5724,6 +5750,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5870,6 +5897,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6094,6 +6122,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6255,6 +6284,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6374,6 +6404,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6610,6 +6641,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6894,6 +6926,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7162,6 +7198,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7409,6 +7446,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7507,6 +7545,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7622,6 +7661,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7753,6 +7793,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7842,6 +7883,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_10_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8096,6 +8138,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_7"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8125,6 +8168,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; @@ -8229,6 +8273,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8265,6 +8310,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8709,6 +8755,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8939,6 +8986,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 752235c5ef5..9dd0cca2fa1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1808,6 +1810,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2009,7 +2012,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2114,6 +2119,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2424,6 +2430,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2499,6 +2506,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2511,6 +2519,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2561,6 +2570,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3303,6 +3313,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3460,6 +3471,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3470,6 +3484,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3553,6 +3568,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4113,6 +4129,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4271,9 +4288,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4770,6 +4789,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5205,6 +5225,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5250,6 +5271,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5501,6 +5523,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5613,6 +5636,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_2"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5650,6 +5674,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5708,6 +5733,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5771,6 +5797,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5918,6 +5945,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6145,6 +6173,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6308,6 +6337,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6427,6 +6457,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6666,6 +6697,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6954,6 +6986,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7224,6 +7260,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7471,6 +7508,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7573,6 +7611,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7688,6 +7727,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7821,6 +7861,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7911,6 +7952,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_3_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8167,6 +8209,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8307,6 +8350,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8343,6 +8387,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8788,6 +8833,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9023,6 +9069,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 67eebd091a2..ab34692cdfd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1808,6 +1810,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2009,7 +2012,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2114,6 +2119,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2424,6 +2430,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2499,6 +2506,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2511,6 +2519,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2561,6 +2570,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3303,6 +3313,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3460,6 +3471,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3470,6 +3484,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3553,6 +3568,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4113,6 +4129,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4271,9 +4288,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4770,6 +4789,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5205,6 +5225,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5250,6 +5271,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5501,6 +5523,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5613,6 +5636,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_2"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5650,6 +5674,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5708,6 +5733,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5771,6 +5797,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5918,6 +5945,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6145,6 +6173,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6308,6 +6337,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6427,6 +6457,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6666,6 +6697,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6954,6 +6986,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7224,6 +7260,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7471,6 +7508,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7573,6 +7611,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7688,6 +7727,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7821,6 +7861,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7911,6 +7952,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_3_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8166,6 +8208,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8306,6 +8349,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8342,6 +8386,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8787,6 +8832,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9021,6 +9067,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 5c07986528d..e0bba2b3882 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1807,6 +1809,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2008,7 +2011,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2113,6 +2118,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2423,6 +2429,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2498,6 +2505,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2510,6 +2518,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2560,6 +2569,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3301,6 +3311,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3458,6 +3469,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3468,6 +3482,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3551,6 +3566,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4111,6 +4127,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4269,9 +4286,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4767,6 +4786,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5200,6 +5220,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5245,6 +5266,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5496,6 +5518,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5608,6 +5631,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_2_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5645,6 +5669,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5703,6 +5728,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5766,6 +5792,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5913,6 +5940,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6139,6 +6167,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6302,6 +6331,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6421,6 +6451,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6660,6 +6691,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6947,6 +6979,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7217,6 +7253,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7464,6 +7501,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7566,6 +7604,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7681,6 +7720,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7814,6 +7854,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7904,6 +7945,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_4_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8159,6 +8201,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8190,6 +8233,7 @@ self: super: { "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8296,6 +8340,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8332,6 +8377,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8777,6 +8823,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9011,6 +9058,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 80403083c0e..088599b21f5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1807,6 +1809,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2008,7 +2011,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2113,6 +2118,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2423,6 +2429,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2498,6 +2505,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2510,6 +2518,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2560,6 +2569,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3301,6 +3311,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3458,6 +3469,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3468,6 +3482,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3551,6 +3566,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4109,6 +4125,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4267,9 +4284,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4765,6 +4784,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5198,6 +5218,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5243,6 +5264,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5492,6 +5514,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5604,6 +5627,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5641,6 +5665,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5699,6 +5724,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5762,6 +5788,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5909,6 +5936,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6135,6 +6163,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6298,6 +6327,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6417,6 +6447,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6656,6 +6687,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6943,6 +6975,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7213,6 +7249,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7460,6 +7497,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7562,6 +7600,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7677,6 +7716,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7810,6 +7850,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7900,6 +7941,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_4_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8155,6 +8197,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8186,6 +8229,7 @@ self: super: { "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8292,6 +8336,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8328,6 +8373,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8773,6 +8819,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9006,6 +9053,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 34365164da1..089f82f285e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1806,6 +1808,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2007,7 +2010,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2112,6 +2117,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2421,6 +2427,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2496,6 +2503,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2508,6 +2516,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2558,6 +2567,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3299,6 +3309,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3456,6 +3467,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3466,6 +3480,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3549,6 +3564,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4107,6 +4123,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4264,9 +4281,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4762,6 +4781,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5195,6 +5215,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5240,6 +5261,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5489,6 +5511,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5601,6 +5624,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5638,6 +5662,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5696,6 +5721,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5759,6 +5785,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5906,6 +5933,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6132,6 +6160,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6295,6 +6324,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6414,6 +6444,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6653,6 +6684,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6938,6 +6970,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7208,6 +7244,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7455,6 +7492,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7557,6 +7595,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7672,6 +7711,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7805,6 +7845,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7894,6 +7935,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_5_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8149,6 +8191,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8180,6 +8223,7 @@ self: super: { "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8286,6 +8330,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8322,6 +8367,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8767,6 +8813,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9000,6 +9047,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index d9658f630df..d2c60d1621f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1804,6 +1806,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2005,7 +2008,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2110,6 +2115,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2419,6 +2425,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2494,6 +2501,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2506,6 +2514,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2556,6 +2565,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3296,6 +3306,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3453,6 +3464,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3463,6 +3477,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3546,6 +3561,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4104,6 +4120,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4261,9 +4278,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4759,6 +4778,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5192,6 +5212,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5237,6 +5258,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5486,6 +5508,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5598,6 +5621,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5635,6 +5659,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5693,6 +5718,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5756,6 +5782,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5902,6 +5929,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6128,6 +6156,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6291,6 +6320,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6410,6 +6440,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6649,6 +6680,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6934,6 +6966,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7204,6 +7240,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7451,6 +7488,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7553,6 +7591,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7668,6 +7707,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7801,6 +7841,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7890,6 +7931,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_5_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8145,6 +8187,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8175,6 +8218,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8281,6 +8325,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8317,6 +8362,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8762,6 +8808,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8995,6 +9042,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 9ed248935ac..eab92ecdca4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1803,6 +1805,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2004,7 +2007,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2109,6 +2114,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2418,6 +2424,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2493,6 +2500,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2505,6 +2513,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2555,6 +2564,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3294,6 +3304,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3451,6 +3462,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3461,6 +3475,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3544,6 +3559,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4102,6 +4118,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4259,9 +4276,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4757,6 +4776,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5190,6 +5210,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5235,6 +5256,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5484,6 +5506,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5596,6 +5619,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5633,6 +5657,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5691,6 +5716,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5754,6 +5780,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5900,6 +5927,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6126,6 +6154,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6289,6 +6318,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6408,6 +6438,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6647,6 +6678,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6932,6 +6964,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7202,6 +7238,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7449,6 +7486,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7551,6 +7589,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7666,6 +7705,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7799,6 +7839,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7888,6 +7929,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_5_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8143,6 +8185,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8173,6 +8216,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8279,6 +8323,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8315,6 +8360,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8760,6 +8806,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8993,6 +9040,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index dbbbc48b70e..9dd5ce82db0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -414,6 +415,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -912,6 +914,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1773,6 +1776,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_3_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1970,7 +1974,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2072,6 +2078,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2376,6 +2383,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2450,6 +2458,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2462,6 +2471,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2512,6 +2522,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3238,6 +3249,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3392,6 +3404,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3402,6 +3417,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3484,6 +3500,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4032,6 +4049,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4188,9 +4206,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4668,6 +4688,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -5081,6 +5102,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5125,6 +5147,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5368,6 +5391,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5478,6 +5502,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5514,6 +5539,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5572,6 +5598,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5631,6 +5658,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5772,6 +5800,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5991,6 +6020,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6150,6 +6180,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6263,6 +6294,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6492,6 +6524,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6768,6 +6801,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7026,6 +7063,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7260,6 +7298,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7271,6 +7310,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7367,6 +7407,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7483,6 +7524,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7611,6 +7653,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7698,6 +7741,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7948,6 +7992,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_6"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7975,6 +8020,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; @@ -8077,6 +8123,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8113,6 +8160,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_0"; @@ -8519,6 +8567,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8539,6 +8588,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8759,6 +8809,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 7186b056ce1..14bf0721a42 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -414,6 +415,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -912,6 +914,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1772,6 +1775,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_3_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1969,7 +1973,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2071,6 +2077,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2375,6 +2382,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2449,6 +2457,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2461,6 +2470,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2511,6 +2521,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3235,6 +3246,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3389,6 +3401,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3399,6 +3414,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3481,6 +3497,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4029,6 +4046,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4185,9 +4203,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4665,6 +4685,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -5074,6 +5095,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5118,6 +5140,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5359,6 +5382,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5469,6 +5493,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5505,6 +5530,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5563,6 +5589,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5622,6 +5649,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5763,6 +5791,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5982,6 +6011,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6141,6 +6171,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6254,6 +6285,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6483,6 +6515,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6759,6 +6792,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7017,6 +7054,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7251,6 +7289,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7262,6 +7301,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7358,6 +7398,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7474,6 +7515,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7602,6 +7644,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7689,6 +7732,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7939,6 +7983,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_7"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7966,6 +8011,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; @@ -8068,6 +8114,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8104,6 +8151,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_0"; @@ -8510,6 +8558,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8530,6 +8579,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8750,6 +8800,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index 14092ca4534..f4b4ed74e0d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -414,6 +415,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -912,6 +914,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1772,6 +1775,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_3_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1967,7 +1971,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2069,6 +2075,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2372,6 +2379,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2446,6 +2454,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2458,6 +2467,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2508,6 +2518,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3228,6 +3239,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3381,6 +3393,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3391,6 +3406,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3473,6 +3489,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4017,6 +4034,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4172,9 +4190,11 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4651,6 +4671,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -5058,6 +5079,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5102,6 +5124,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5343,6 +5366,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5453,6 +5477,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5489,6 +5514,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5547,6 +5573,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5606,6 +5633,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5747,6 +5775,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_17"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5964,6 +5993,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6123,6 +6153,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6236,6 +6267,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6465,6 +6497,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6738,6 +6771,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6995,6 +7032,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7228,6 +7266,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7239,6 +7278,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7335,6 +7375,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7447,6 +7488,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7575,6 +7617,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7661,6 +7704,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7911,6 +7955,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7938,6 +7983,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; @@ -8040,6 +8086,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8076,6 +8123,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_0"; @@ -8482,6 +8530,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8502,6 +8551,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8721,6 +8771,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index 4d06b5e2d35..79ddd3344d4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -412,6 +413,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -907,6 +909,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1762,6 +1765,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1956,7 +1960,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2058,6 +2064,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2358,6 +2365,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2431,6 +2439,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2443,6 +2452,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2493,6 +2503,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2714,6 +2725,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3204,6 +3216,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3357,6 +3370,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3367,6 +3383,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3398,6 +3415,7 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3446,6 +3464,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3986,6 +4005,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4141,9 +4161,11 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4620,6 +4642,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -5026,6 +5049,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5069,6 +5093,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5309,6 +5334,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5419,6 +5445,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5455,6 +5482,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5513,6 +5541,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5572,6 +5601,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5711,6 +5741,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_17"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5928,6 +5959,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6085,6 +6117,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6197,6 +6230,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_4"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6424,6 +6458,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6695,6 +6730,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6949,6 +6988,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7180,6 +7220,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7191,6 +7232,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7287,6 +7329,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7397,6 +7440,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7525,6 +7569,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7611,6 +7656,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7858,6 +7904,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7885,6 +7932,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; @@ -7984,6 +8032,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8019,6 +8068,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8423,6 +8473,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8442,6 +8493,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8659,6 +8711,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index 62fd0637274..a4e2b2a8d75 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -411,6 +412,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -906,6 +908,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1760,6 +1763,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1953,7 +1957,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2054,6 +2060,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2354,6 +2361,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2427,6 +2435,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2439,6 +2448,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2489,6 +2499,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2710,6 +2721,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3200,6 +3212,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3353,6 +3366,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3363,6 +3379,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3394,6 +3411,7 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3442,6 +3460,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3982,6 +4001,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4137,9 +4157,11 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4616,6 +4638,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -5021,6 +5044,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5064,6 +5088,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5304,6 +5329,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5414,6 +5440,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5450,6 +5477,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5508,6 +5536,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5567,6 +5596,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5705,6 +5735,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_17"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5922,6 +5953,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6079,6 +6111,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6191,6 +6224,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_4"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6418,6 +6452,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6689,6 +6724,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6942,6 +6981,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7173,6 +7213,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7184,6 +7225,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7280,6 +7322,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7390,6 +7433,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7518,6 +7562,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7604,6 +7649,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7851,6 +7897,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7878,6 +7925,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; @@ -7977,6 +8025,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8012,6 +8061,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8416,6 +8466,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8435,6 +8486,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8651,6 +8703,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix index 216517197f3..4099b5a4144 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix @@ -189,6 +189,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -409,6 +410,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -902,6 +904,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1753,6 +1756,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1943,7 +1947,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2042,6 +2048,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2264,6 +2271,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2339,6 +2347,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2412,6 +2421,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2424,6 +2434,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2473,6 +2484,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2689,6 +2701,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3012,6 +3025,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3171,6 +3185,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3309,6 +3324,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3321,6 +3337,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3331,6 +3350,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3361,6 +3381,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3408,6 +3430,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3947,6 +3970,7 @@ self: super: { "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-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4100,9 +4124,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4575,6 +4601,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_2"; @@ -4620,6 +4647,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4974,6 +5002,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5016,6 +5045,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5255,6 +5285,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5364,6 +5395,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5399,6 +5431,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5456,6 +5489,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5514,6 +5548,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5647,6 +5682,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5862,6 +5898,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6016,6 +6053,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6127,6 +6165,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6346,6 +6385,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6617,6 +6657,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6867,6 +6911,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7097,6 +7142,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7108,6 +7154,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7203,6 +7250,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7312,6 +7360,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7437,6 +7486,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7523,6 +7573,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7769,6 +7820,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7796,6 +7848,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7893,6 +7946,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7928,6 +7982,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8330,6 +8385,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8349,6 +8405,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8559,6 +8616,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix index 4fa9c249adb..41358159978 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix @@ -189,6 +189,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -408,6 +409,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -901,6 +903,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1750,6 +1753,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1940,7 +1944,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2039,6 +2045,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2261,6 +2268,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2336,6 +2344,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2409,6 +2418,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2421,6 +2431,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2470,6 +2481,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2686,6 +2698,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3008,6 +3021,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3167,6 +3181,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3305,6 +3320,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3317,6 +3333,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3327,6 +3346,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3357,6 +3377,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3404,6 +3426,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3943,6 +3966,7 @@ self: super: { "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-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4096,9 +4120,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4567,6 +4593,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_2"; @@ -4612,6 +4639,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4965,6 +4993,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5007,6 +5036,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5246,6 +5276,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5355,6 +5386,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5390,6 +5422,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5447,6 +5480,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_3"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5505,6 +5539,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5638,6 +5673,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5853,6 +5889,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6007,6 +6044,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6118,6 +6156,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6337,6 +6376,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6607,6 +6647,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6857,6 +6901,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7087,6 +7132,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7098,6 +7144,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7193,6 +7240,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7302,6 +7350,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7427,6 +7476,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7513,6 +7563,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7759,6 +7810,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7785,6 +7837,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7882,6 +7935,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7917,6 +7971,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8318,6 +8373,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -8336,6 +8392,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8545,6 +8602,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix index 0449f630810..3fc49a72614 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix @@ -189,6 +189,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -408,6 +409,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -900,6 +902,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1749,6 +1752,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1939,7 +1943,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2038,6 +2044,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2260,6 +2267,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2335,6 +2343,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2408,6 +2417,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2420,6 +2430,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2469,6 +2480,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2685,6 +2697,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3005,6 +3018,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3164,6 +3178,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3302,6 +3317,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3314,6 +3330,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3324,6 +3343,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3354,6 +3374,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3401,6 +3423,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3940,6 +3963,7 @@ self: super: { "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-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4093,9 +4117,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4564,6 +4590,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4608,6 +4635,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4961,6 +4989,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5003,6 +5032,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5242,6 +5272,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5351,6 +5382,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5386,6 +5418,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5441,6 +5474,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_3"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5498,6 +5532,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5629,6 +5664,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5844,6 +5880,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5998,6 +6035,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6109,6 +6147,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6328,6 +6367,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6598,6 +6638,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6848,6 +6892,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7078,6 +7123,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7089,6 +7135,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7183,6 +7230,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7292,6 +7340,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7417,6 +7466,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7503,6 +7553,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7749,6 +7800,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7775,6 +7827,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7872,6 +7925,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7907,6 +7961,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8308,6 +8363,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -8326,6 +8382,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8535,6 +8592,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix index a66652715c3..e4132c55105 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix @@ -189,6 +189,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -408,6 +409,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -899,6 +901,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1745,6 +1748,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1935,7 +1939,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2034,6 +2040,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2256,6 +2263,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2331,6 +2339,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2404,6 +2413,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2416,6 +2426,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2465,6 +2476,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2681,6 +2693,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3001,6 +3014,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3160,6 +3174,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3298,6 +3313,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3310,6 +3326,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3320,6 +3339,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3350,6 +3370,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3397,6 +3419,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3936,6 +3959,7 @@ self: super: { "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-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4089,9 +4113,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4560,6 +4586,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4604,6 +4631,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4956,6 +4984,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4998,6 +5027,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5237,6 +5267,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5346,6 +5377,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5381,6 +5413,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5435,6 +5468,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_3"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5492,6 +5526,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5623,6 +5658,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5838,6 +5874,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5992,6 +6029,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6102,6 +6140,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6321,6 +6360,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6591,6 +6631,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6841,6 +6885,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7071,6 +7116,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7082,6 +7128,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7176,6 +7223,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7285,6 +7333,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7410,6 +7459,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7496,6 +7546,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7742,6 +7793,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7768,6 +7820,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7865,6 +7918,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7900,6 +7954,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8300,6 +8355,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -8318,6 +8374,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8526,6 +8583,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.14.nix b/pkgs/development/haskell-modules/configuration-lts-5.14.nix index f353a00b1d1..37e420e1d4e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.14.nix @@ -189,6 +189,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -408,6 +409,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -897,6 +899,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1740,6 +1743,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1930,7 +1934,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2028,6 +2034,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2224,6 +2231,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2247,6 +2255,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2322,6 +2331,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2395,6 +2405,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2407,6 +2418,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2456,6 +2468,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2672,6 +2685,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -2992,6 +3006,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3150,6 +3165,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3288,6 +3304,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3299,6 +3316,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3309,6 +3329,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3339,6 +3360,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3386,6 +3409,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3925,6 +3949,7 @@ self: super: { "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-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4078,9 +4103,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4548,6 +4575,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4592,6 +4620,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4944,6 +4973,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4986,6 +5016,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5224,6 +5255,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5333,6 +5365,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5368,6 +5401,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5422,6 +5456,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_3"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5479,6 +5514,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5609,6 +5645,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5824,6 +5861,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5978,6 +6016,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6088,6 +6127,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6306,6 +6346,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6575,6 +6616,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6825,6 +6870,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7055,6 +7101,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7066,6 +7113,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7160,6 +7208,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7269,6 +7318,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7394,6 +7444,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7480,6 +7531,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7725,6 +7777,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7751,6 +7804,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7847,6 +7901,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7882,6 +7937,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8282,6 +8338,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -8300,6 +8357,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8506,6 +8564,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.15.nix b/pkgs/development/haskell-modules/configuration-lts-5.15.nix index 9ec24560413..98d945acf55 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.15.nix @@ -189,6 +189,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -408,6 +409,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -896,6 +898,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1739,6 +1742,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1929,7 +1933,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2027,6 +2033,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2222,6 +2229,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2245,6 +2253,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2320,6 +2329,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2392,6 +2402,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2404,6 +2415,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2453,6 +2465,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2669,6 +2682,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -2987,6 +3001,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3145,6 +3160,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3283,6 +3299,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3294,6 +3311,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3304,6 +3324,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3334,6 +3355,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3381,6 +3404,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3920,6 +3944,7 @@ self: super: { "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-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4072,9 +4097,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4541,6 +4568,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4585,6 +4613,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4937,6 +4966,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4979,6 +5009,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5216,6 +5247,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5325,6 +5357,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5360,6 +5393,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5414,6 +5448,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_3"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5471,6 +5506,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5601,6 +5637,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5816,6 +5853,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5970,6 +6008,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6080,6 +6119,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6298,6 +6338,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6565,6 +6606,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6815,6 +6860,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7045,6 +7091,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7056,6 +7103,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7150,6 +7198,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7259,6 +7308,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7384,6 +7434,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7470,6 +7521,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7715,6 +7767,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7740,6 +7793,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7836,6 +7890,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7871,6 +7926,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8270,6 +8326,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -8288,6 +8345,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8494,6 +8552,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.16.nix b/pkgs/development/haskell-modules/configuration-lts-5.16.nix index fe35f1a0153..d8e8421c045 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.16.nix @@ -189,6 +189,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -408,6 +409,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -895,6 +897,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1734,6 +1737,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1923,7 +1927,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2021,6 +2027,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2213,6 +2220,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2236,6 +2244,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2311,6 +2320,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2383,6 +2393,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2395,6 +2406,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2444,6 +2456,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2660,6 +2673,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -2977,6 +2991,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3135,6 +3150,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3273,6 +3289,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3284,6 +3301,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3294,6 +3314,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3324,6 +3345,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3371,6 +3394,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3909,6 +3933,7 @@ self: super: { "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4060,9 +4085,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4529,6 +4556,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4573,6 +4601,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4924,6 +4953,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4966,6 +4996,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5202,6 +5233,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5311,6 +5343,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5346,6 +5379,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5400,6 +5434,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_3"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5419,6 +5454,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_1"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5456,6 +5492,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5586,6 +5623,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5800,6 +5838,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5954,6 +5993,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6064,6 +6104,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6281,6 +6322,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6546,6 +6588,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6796,6 +6842,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7022,6 +7069,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7033,6 +7081,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7127,6 +7176,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7236,6 +7286,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7358,6 +7409,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7443,6 +7495,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7686,7 +7739,9 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7711,6 +7766,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7807,6 +7863,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7841,6 +7898,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8240,6 +8298,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -8258,6 +8317,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8464,6 +8524,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.17.nix b/pkgs/development/haskell-modules/configuration-lts-5.17.nix index 5d26d4a8c6e..3da09e186d9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.17.nix @@ -189,6 +189,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -406,6 +407,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -892,6 +894,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1731,6 +1734,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1920,7 +1924,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2018,6 +2024,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2210,6 +2217,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2233,6 +2241,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2308,6 +2317,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2380,6 +2390,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2392,6 +2403,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2441,6 +2453,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2657,6 +2670,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -2974,6 +2988,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3132,6 +3147,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3270,6 +3286,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3281,6 +3298,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3291,6 +3311,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3321,6 +3342,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3368,6 +3391,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3906,6 +3930,7 @@ self: super: { "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4057,9 +4082,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4526,6 +4553,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4570,6 +4598,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4921,6 +4950,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4963,6 +4993,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5199,6 +5230,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5308,6 +5340,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5343,6 +5376,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5397,6 +5431,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_3"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5416,6 +5451,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_1"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5437,6 +5473,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_7_0"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5452,6 +5489,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5582,6 +5620,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5796,6 +5835,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5949,6 +5989,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6059,6 +6100,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6275,6 +6317,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6540,6 +6583,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6789,6 +6836,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7015,6 +7063,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7026,6 +7075,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7120,6 +7170,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7229,6 +7280,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7351,6 +7403,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7436,6 +7489,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7678,7 +7732,9 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7703,6 +7759,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7799,6 +7856,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7833,6 +7891,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8230,6 +8289,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -8248,6 +8308,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8454,6 +8515,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.18.nix b/pkgs/development/haskell-modules/configuration-lts-5.18.nix index edb76237951..f3ed1e1b470 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.18.nix @@ -189,6 +189,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -406,6 +407,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -891,6 +893,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1730,6 +1733,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1918,7 +1922,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2016,6 +2022,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2207,6 +2214,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2230,6 +2238,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2305,6 +2314,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2377,6 +2387,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2389,6 +2400,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2438,6 +2450,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2650,6 +2663,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -2966,6 +2980,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3123,6 +3138,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3261,6 +3277,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3272,6 +3289,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3282,6 +3302,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3312,6 +3333,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3359,6 +3382,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3604,6 +3628,7 @@ self: super: { "graphmod" = dontDistribute super."graphmod"; "graphql" = dontDistribute super."graphql"; "graphtype" = dontDistribute super."graphtype"; + "graphviz" = doDistribute super."graphviz_2999_18_1_0"; "grasp" = dontDistribute super."grasp"; "gray-code" = dontDistribute super."gray-code"; "gray-extended" = dontDistribute super."gray-extended"; @@ -3896,6 +3921,7 @@ self: super: { "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4047,9 +4073,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4515,6 +4543,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4559,6 +4588,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4907,6 +4937,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4949,6 +4980,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5185,6 +5217,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5294,6 +5327,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5329,6 +5363,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5383,6 +5418,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_4"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5402,6 +5438,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_1"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5423,6 +5460,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_7_0"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5438,6 +5476,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5567,6 +5606,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5779,6 +5819,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5930,6 +5971,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6040,6 +6082,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6256,6 +6299,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6520,6 +6564,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6769,6 +6817,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -6995,6 +7044,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7006,6 +7056,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7100,6 +7151,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7209,6 +7261,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7331,6 +7384,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7416,6 +7470,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7658,7 +7713,9 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7683,6 +7740,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7779,6 +7837,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7812,6 +7871,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8209,6 +8269,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -8227,6 +8288,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8431,6 +8493,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index e9c764e7f8e..eda095a330c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -411,6 +412,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -906,6 +908,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1760,6 +1763,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1953,7 +1957,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2054,6 +2060,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2354,6 +2361,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2427,6 +2435,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2439,6 +2448,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2489,6 +2499,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2709,6 +2720,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3036,6 +3048,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3197,6 +3210,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3350,6 +3364,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3360,6 +3377,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3391,6 +3409,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3438,6 +3458,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3977,6 +3998,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4132,9 +4154,11 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4611,6 +4635,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -4656,6 +4681,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -5014,6 +5040,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5057,6 +5084,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5297,6 +5325,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5407,6 +5436,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5443,6 +5473,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5501,6 +5532,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5560,6 +5592,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5697,6 +5730,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5914,6 +5948,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6071,6 +6106,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6183,6 +6219,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_4"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6407,6 +6444,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6678,6 +6716,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6930,6 +6972,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7160,6 +7203,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7171,6 +7215,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7267,6 +7312,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7377,6 +7423,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7505,6 +7552,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7591,6 +7639,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7837,6 +7886,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7864,6 +7914,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; @@ -7963,6 +8014,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7998,6 +8050,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8402,6 +8455,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8421,6 +8475,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8637,6 +8692,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index 80bf104ea44..ab577fde58b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -411,6 +412,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -905,6 +907,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1758,6 +1761,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1951,7 +1955,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2052,6 +2058,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2352,6 +2359,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2425,6 +2433,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2437,6 +2446,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2486,6 +2496,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2705,6 +2716,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3029,6 +3041,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3189,6 +3202,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3329,6 +3343,7 @@ self: super: { "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3341,6 +3356,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3351,6 +3369,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3382,6 +3401,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3429,6 +3450,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3968,6 +3990,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4123,9 +4146,11 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4602,6 +4627,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -4647,6 +4673,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -5004,6 +5031,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5047,6 +5075,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5287,6 +5316,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5396,6 +5426,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5432,6 +5463,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5490,6 +5522,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5549,6 +5582,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5685,6 +5719,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5902,6 +5937,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6059,6 +6095,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6171,6 +6208,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_6"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6394,6 +6432,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6665,6 +6704,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6915,6 +6958,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7145,6 +7189,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7156,6 +7201,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7252,6 +7298,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7362,6 +7409,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7488,6 +7536,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7574,6 +7623,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7820,6 +7870,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7847,6 +7898,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; @@ -7946,6 +7998,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7981,6 +8034,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8385,6 +8439,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8404,6 +8459,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8617,6 +8673,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index d17565f14a8..e61030058bb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -411,6 +412,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -904,6 +906,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1757,6 +1760,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1950,7 +1954,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2051,6 +2057,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2273,6 +2280,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2349,6 +2357,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2422,6 +2431,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2434,6 +2444,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2483,6 +2494,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2700,6 +2712,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3023,6 +3036,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3182,6 +3196,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3322,6 +3337,7 @@ self: super: { "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3334,6 +3350,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3344,6 +3363,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3374,6 +3394,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3421,6 +3443,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3960,6 +3983,7 @@ self: super: { "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-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4115,9 +4139,11 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4594,6 +4620,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -4639,6 +4666,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4996,6 +5024,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5039,6 +5068,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5279,6 +5309,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5388,6 +5419,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5423,6 +5455,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5481,6 +5514,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5540,6 +5574,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5676,6 +5711,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5892,6 +5928,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6048,6 +6085,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6160,6 +6198,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_6"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6381,6 +6420,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6652,6 +6692,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6902,6 +6946,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7132,6 +7177,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7143,6 +7189,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7239,6 +7286,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7349,6 +7397,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7475,6 +7524,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7561,6 +7611,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7807,6 +7858,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7834,6 +7886,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7932,6 +7985,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7967,6 +8021,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8371,6 +8426,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8390,6 +8446,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8603,6 +8660,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 1e2bdb39d05..216beaa5e1e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -411,6 +412,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -904,6 +906,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1757,6 +1760,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1949,7 +1953,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2050,6 +2056,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2272,6 +2279,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2348,6 +2356,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2421,6 +2430,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2433,6 +2443,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2482,6 +2493,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2699,6 +2711,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3022,6 +3035,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3181,6 +3195,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3321,6 +3336,7 @@ self: super: { "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3333,6 +3349,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3343,6 +3362,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3373,6 +3393,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3420,6 +3442,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3959,6 +3982,7 @@ self: super: { "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-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4114,9 +4138,11 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4592,6 +4618,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -4637,6 +4664,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4994,6 +5022,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5037,6 +5066,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5277,6 +5307,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5386,6 +5417,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5421,6 +5453,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5479,6 +5512,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5538,6 +5572,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5674,6 +5709,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5890,6 +5926,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6046,6 +6083,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6158,6 +6196,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_6"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6379,6 +6418,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6650,6 +6690,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6900,6 +6944,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7130,6 +7175,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7141,6 +7187,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7237,6 +7284,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7347,6 +7395,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7473,6 +7522,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7559,6 +7609,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7805,6 +7856,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7832,6 +7884,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7930,6 +7983,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7965,6 +8019,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8369,6 +8424,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8388,6 +8444,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8600,6 +8657,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index 5b23bea6a10..a54dcb147c6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -410,6 +411,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -903,6 +905,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1756,6 +1759,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1948,7 +1952,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2049,6 +2055,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2271,6 +2278,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2346,6 +2354,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2419,6 +2428,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2431,6 +2441,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2480,6 +2491,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2697,6 +2709,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3020,6 +3033,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3179,6 +3193,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3317,6 +3332,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3329,6 +3345,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3339,6 +3358,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3369,6 +3389,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3416,6 +3438,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3955,6 +3978,7 @@ self: super: { "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-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4109,9 +4133,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4587,6 +4613,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_2"; @@ -4632,6 +4659,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4989,6 +5017,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5032,6 +5061,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5271,6 +5301,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5380,6 +5411,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5415,6 +5447,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5472,6 +5505,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5531,6 +5565,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5667,6 +5702,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5882,6 +5918,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6038,6 +6075,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6150,6 +6188,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_6"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6370,6 +6409,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6641,6 +6681,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6891,6 +6935,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7121,6 +7166,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7132,6 +7178,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7228,6 +7275,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7338,6 +7386,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7464,6 +7513,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7550,6 +7600,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7796,6 +7847,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7823,6 +7875,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7921,6 +7974,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7956,6 +8010,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8359,6 +8414,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8378,6 +8434,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8589,6 +8646,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index 77883246470..4c26b8ecf88 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -410,6 +411,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -903,6 +905,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1756,6 +1759,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1947,7 +1951,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2046,6 +2052,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2268,6 +2275,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2343,6 +2351,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2416,6 +2425,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2428,6 +2438,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2477,6 +2488,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2694,6 +2706,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3017,6 +3030,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3176,6 +3190,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3314,6 +3329,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3326,6 +3342,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3336,6 +3355,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3366,6 +3386,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3413,6 +3435,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3952,6 +3975,7 @@ self: super: { "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-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4106,9 +4130,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4583,6 +4609,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_2"; @@ -4628,6 +4655,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4985,6 +5013,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5028,6 +5057,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5267,6 +5297,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5376,6 +5407,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5411,6 +5443,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5468,6 +5501,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5527,6 +5561,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5662,6 +5697,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5877,6 +5913,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6033,6 +6070,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6145,6 +6183,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_6"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6365,6 +6404,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6636,6 +6676,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6886,6 +6930,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7116,6 +7161,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7127,6 +7173,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7223,6 +7270,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7333,6 +7381,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7459,6 +7508,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7545,6 +7595,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7791,6 +7842,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7818,6 +7870,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7916,6 +7969,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7951,6 +8005,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8353,6 +8408,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8372,6 +8428,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8583,6 +8640,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index a5a4a2e7bed..1ef3e83698f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -410,6 +411,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -903,6 +905,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1756,6 +1759,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1947,7 +1951,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2046,6 +2052,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2268,6 +2275,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2343,6 +2351,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2416,6 +2425,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2428,6 +2438,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2477,6 +2488,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2694,6 +2706,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3017,6 +3030,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3176,6 +3190,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3314,6 +3329,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3326,6 +3342,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3336,6 +3355,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3366,6 +3386,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3413,6 +3435,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3952,6 +3975,7 @@ self: super: { "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-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4106,9 +4130,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4583,6 +4609,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_2"; @@ -4628,6 +4655,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4985,6 +5013,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5028,6 +5057,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5267,6 +5297,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5376,6 +5407,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5411,6 +5443,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5468,6 +5501,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5527,6 +5561,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5662,6 +5697,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5877,6 +5913,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6033,6 +6070,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6145,6 +6183,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_6"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6365,6 +6404,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6636,6 +6676,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6886,6 +6930,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7116,6 +7161,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7127,6 +7173,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7223,6 +7270,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7333,6 +7381,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7459,6 +7508,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7545,6 +7595,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7791,6 +7842,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7818,6 +7870,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7916,6 +7969,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7951,6 +8005,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8353,6 +8408,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8372,6 +8428,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8582,6 +8639,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix index 2e2c7266d00..26420ddae5c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -410,6 +411,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -903,6 +905,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1755,6 +1758,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1945,7 +1949,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2044,6 +2050,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2266,6 +2273,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2341,6 +2349,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2414,6 +2423,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2426,6 +2436,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2475,6 +2486,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2691,6 +2703,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3014,6 +3027,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3173,6 +3187,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3311,6 +3326,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3323,6 +3339,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3333,6 +3352,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3363,6 +3383,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3410,6 +3432,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3949,6 +3972,7 @@ self: super: { "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-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4102,9 +4126,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4579,6 +4605,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_2"; @@ -4624,6 +4651,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4978,6 +5006,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5021,6 +5050,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5260,6 +5290,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5369,6 +5400,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5404,6 +5436,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5461,6 +5494,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5520,6 +5554,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5655,6 +5690,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5870,6 +5906,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6025,6 +6062,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6136,6 +6174,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6355,6 +6394,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6626,6 +6666,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6876,6 +6920,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7106,6 +7151,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7117,6 +7163,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7212,6 +7259,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7321,6 +7369,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7446,6 +7495,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7532,6 +7582,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7778,6 +7829,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7805,6 +7857,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7902,6 +7955,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7937,6 +7991,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8339,6 +8394,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8358,6 +8414,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8568,6 +8625,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.0.nix b/pkgs/development/haskell-modules/configuration-lts-6.0.nix index 94bb9acdb21..d4442d43a24 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.0.nix @@ -188,6 +188,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -403,6 +404,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -881,6 +883,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1701,6 +1704,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1887,7 +1891,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -1982,6 +1988,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2165,6 +2172,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2188,6 +2196,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2259,6 +2268,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2330,8 +2340,10 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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_1_0"; "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"; @@ -2341,6 +2353,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2389,6 +2402,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2590,6 +2604,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2894,6 +2909,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3046,6 +3062,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3181,6 +3198,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3192,6 +3210,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3202,6 +3223,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3232,6 +3254,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3268,6 +3292,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3509,6 +3534,7 @@ self: super: { "graphmod" = dontDistribute super."graphmod"; "graphql" = dontDistribute super."graphql"; "graphtype" = dontDistribute super."graphtype"; + "graphviz" = doDistribute super."graphviz_2999_18_1_0"; "grasp" = dontDistribute super."grasp"; "gray-code" = dontDistribute super."gray-code"; "gray-extended" = dontDistribute super."gray-extended"; @@ -3947,9 +3973,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4404,6 +4432,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4447,6 +4476,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4457,6 +4487,7 @@ self: super: { "http-trace" = dontDistribute super."http-trace"; "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_6_0"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; "httpspec" = dontDistribute super."httpspec"; @@ -4786,6 +4817,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4826,6 +4858,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4911,6 +4944,7 @@ self: super: { "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; "lambdacube-engine" = dontDistribute super."lambdacube-engine"; "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; @@ -5051,6 +5085,7 @@ self: super: { "libxml-enumerator" = dontDistribute super."libxml-enumerator"; "libxslt" = dontDistribute super."libxslt"; "life" = dontDistribute super."life"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5159,6 +5194,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; "logging-effect" = dontDistribute super."logging-effect"; @@ -5193,6 +5229,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -5242,6 +5279,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_4"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5261,6 +5299,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_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; @@ -5283,6 +5322,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_7_0"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5298,6 +5338,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5424,6 +5465,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5628,6 +5670,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = doDistribute super."nested-routes_7_0_0"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5776,6 +5819,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -5884,6 +5928,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6099,6 +6144,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6352,6 +6398,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6408,6 +6458,7 @@ self: super: { "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow" = doDistribute super."rainbow_0_28_0_0"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_8"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6592,6 +6643,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -6807,6 +6859,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -6818,6 +6871,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -6899,6 +6953,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7005,6 +7060,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7126,6 +7182,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7210,10 +7267,12 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "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_1"; + "stackage-curator" = doDistribute super."stackage-curator_0_14_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7441,7 +7500,9 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7465,6 +7526,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7559,6 +7621,7 @@ self: super: { "text-utf7" = dontDistribute super."text-utf7"; "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7591,6 +7654,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -7975,6 +8039,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -7992,6 +8057,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8189,6 +8255,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witness" = dontDistribute super."witness"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.1.nix b/pkgs/development/haskell-modules/configuration-lts-6.1.nix index d5032927ded..d9d6fe893c2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.1.nix @@ -188,6 +188,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -403,6 +404,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -879,6 +881,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1696,6 +1699,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1875,7 +1879,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -1970,6 +1976,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2153,6 +2160,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2176,6 +2184,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2246,6 +2255,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2317,8 +2327,10 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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_1_0"; "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"; @@ -2328,6 +2340,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2375,6 +2388,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2576,6 +2590,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2873,6 +2888,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3022,6 +3038,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3156,6 +3173,7 @@ self: super: { "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3167,6 +3185,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3177,6 +3198,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3207,6 +3229,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3243,6 +3267,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3480,6 +3505,7 @@ self: super: { "graphmod" = dontDistribute super."graphmod"; "graphql" = dontDistribute super."graphql"; "graphtype" = dontDistribute super."graphtype"; + "graphviz" = doDistribute super."graphviz_2999_18_1_0"; "grasp" = dontDistribute super."grasp"; "gray-code" = dontDistribute super."gray-code"; "gray-extended" = dontDistribute super."gray-extended"; @@ -3916,9 +3942,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4369,6 +4397,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4412,6 +4441,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4422,6 +4452,7 @@ self: super: { "http-trace" = dontDistribute super."http-trace"; "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_6_0"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; "httpspec" = dontDistribute super."httpspec"; @@ -4747,6 +4778,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4787,6 +4819,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4828,6 +4861,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_2"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4871,6 +4905,7 @@ self: super: { "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; "lambdacube-engine" = dontDistribute super."lambdacube-engine"; "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; @@ -5009,6 +5044,7 @@ self: super: { "libxml-enumerator" = dontDistribute super."libxml-enumerator"; "libxslt" = dontDistribute super."libxslt"; "life" = dontDistribute super."life"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5117,6 +5153,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; "logging-effect" = dontDistribute super."logging-effect"; @@ -5151,6 +5188,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -5200,6 +5238,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -5218,6 +5257,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_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; @@ -5240,6 +5280,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_7_0"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5254,6 +5295,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5379,6 +5421,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5582,6 +5625,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = doDistribute super."nested-routes_7_0_0"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5729,6 +5773,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -5835,6 +5880,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6004,6 +6050,7 @@ self: super: { "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; "pinch" = doDistribute super."pinch_0_2_0_1"; + "pinchot" = doDistribute super."pinchot_0_18_0_2"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes-async" = dontDistribute super."pipes-async"; @@ -6046,6 +6093,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; @@ -6294,6 +6342,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6350,6 +6402,7 @@ self: super: { "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow" = doDistribute super."rainbow_0_28_0_0"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_8"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6533,6 +6586,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -6557,6 +6611,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5"; "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; @@ -6746,6 +6801,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -6757,6 +6813,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -6838,6 +6895,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -6944,6 +7002,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7065,6 +7124,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7149,10 +7209,12 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "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_1"; + "stackage-curator" = doDistribute super."stackage-curator_0_14_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7379,7 +7441,9 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7402,6 +7466,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7495,6 +7560,7 @@ self: super: { "text-utf7" = dontDistribute super."text-utf7"; "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7527,6 +7593,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -7909,6 +7976,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -7926,6 +7994,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8118,6 +8187,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.2.nix b/pkgs/development/haskell-modules/configuration-lts-6.2.nix index 745d629e695..3b5eaf8b11c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.2.nix @@ -187,6 +187,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -400,6 +401,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -874,6 +876,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1687,6 +1690,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1866,7 +1870,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -1961,6 +1967,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2142,6 +2149,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2165,6 +2173,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2235,6 +2244,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2306,8 +2316,10 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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_1_0"; "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"; @@ -2317,6 +2329,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2364,6 +2377,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2564,6 +2578,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2860,6 +2875,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3006,6 +3022,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3140,6 +3157,7 @@ self: super: { "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3151,6 +3169,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3161,6 +3182,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3189,6 +3211,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3225,6 +3249,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3462,6 +3487,7 @@ self: super: { "graphmod" = dontDistribute super."graphmod"; "graphql" = dontDistribute super."graphql"; "graphtype" = dontDistribute super."graphtype"; + "graphviz" = doDistribute super."graphviz_2999_18_1_0"; "grasp" = dontDistribute super."grasp"; "gray-code" = dontDistribute super."gray-code"; "gray-extended" = dontDistribute super."gray-extended"; @@ -3895,9 +3921,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4347,6 +4375,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4390,6 +4419,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4399,6 +4429,7 @@ self: super: { "http-test" = dontDistribute super."http-test"; "http-trace" = dontDistribute super."http-trace"; "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_6_0"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; "httpspec" = dontDistribute super."httpspec"; @@ -4723,6 +4754,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4762,6 +4794,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4803,6 +4836,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_2"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4846,6 +4880,7 @@ self: super: { "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; "lambdacube-engine" = dontDistribute super."lambdacube-engine"; "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; @@ -4984,6 +5019,7 @@ self: super: { "libxml-enumerator" = dontDistribute super."libxml-enumerator"; "libxslt" = dontDistribute super."libxslt"; "life" = dontDistribute super."life"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5091,6 +5127,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; "logging-effect" = dontDistribute super."logging-effect"; @@ -5125,6 +5162,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -5174,6 +5212,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -5192,6 +5231,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_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; @@ -5214,6 +5254,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_7_0"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5228,6 +5269,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5353,6 +5395,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5555,6 +5598,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = doDistribute super."nested-routes_7_0_0"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5701,6 +5745,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -5806,6 +5851,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5971,6 +6017,7 @@ self: super: { "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; "pinch" = doDistribute super."pinch_0_2_0_1"; + "pinchot" = doDistribute super."pinchot_0_18_0_2"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes-async" = dontDistribute super."pipes-async"; @@ -6013,6 +6060,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; @@ -6261,6 +6309,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6317,6 +6369,7 @@ self: super: { "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow" = doDistribute super."rainbow_0_28_0_0"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_8"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6497,6 +6550,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -6521,6 +6575,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5"; "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; @@ -6707,6 +6762,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -6718,6 +6774,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -6799,6 +6856,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -6905,6 +6963,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7025,6 +7084,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7109,10 +7169,12 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "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_2"; + "stackage-curator" = doDistribute super."stackage-curator_0_14_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7336,7 +7398,9 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7359,6 +7423,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7372,6 +7437,7 @@ self: super: { "teams" = dontDistribute super."teams"; "teeth" = dontDistribute super."teeth"; "telegram" = dontDistribute super."telegram"; + "telegram-api" = doDistribute super."telegram-api_0_4_3_0"; "teleport" = dontDistribute super."teleport"; "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; @@ -7451,6 +7517,7 @@ self: super: { "text-utf7" = dontDistribute super."text-utf7"; "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7483,6 +7550,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -7863,6 +7931,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -7880,6 +7949,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8071,6 +8141,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.3.nix b/pkgs/development/haskell-modules/configuration-lts-6.3.nix index b2012886939..855f6aca367 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.3.nix @@ -187,6 +187,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -400,6 +401,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -871,6 +873,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1609,6 +1612,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1786,7 +1790,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -1861,6 +1867,7 @@ self: super: { "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_7"; "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_7"; "clay" = doDistribute super."clay_0_10_1"; + "clckwrks" = doDistribute super."clckwrks_0_23_16"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -1874,6 +1881,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2055,6 +2063,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2078,6 +2087,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2148,6 +2158,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2219,8 +2230,10 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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_1_0"; "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"; @@ -2230,6 +2243,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2277,6 +2291,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2469,6 +2484,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2765,6 +2781,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -2911,6 +2928,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3045,6 +3063,7 @@ self: super: { "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3056,6 +3075,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3066,6 +3088,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3093,6 +3116,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3129,6 +3154,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3366,6 +3392,7 @@ self: super: { "graphmod" = dontDistribute super."graphmod"; "graphql" = dontDistribute super."graphql"; "graphtype" = dontDistribute super."graphtype"; + "graphviz" = doDistribute super."graphviz_2999_18_1_0"; "grasp" = dontDistribute super."grasp"; "gray-code" = dontDistribute super."gray-code"; "gray-extended" = dontDistribute super."gray-extended"; @@ -3557,6 +3584,7 @@ self: super: { "happs-tutorial" = dontDistribute super."happs-tutorial"; "happstack" = dontDistribute super."happstack"; "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_4_2"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3794,9 +3822,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4242,6 +4272,7 @@ self: super: { "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4284,6 +4315,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4293,6 +4325,7 @@ self: super: { "http-test" = dontDistribute super."http-test"; "http-trace" = dontDistribute super."http-trace"; "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_6_0"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; "httpspec" = dontDistribute super."httpspec"; @@ -4615,6 +4648,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4653,6 +4687,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4694,6 +4729,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_2"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4737,6 +4773,7 @@ self: super: { "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; "lambdacube-engine" = dontDistribute super."lambdacube-engine"; "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; @@ -4875,6 +4912,7 @@ self: super: { "libxml-enumerator" = dontDistribute super."libxml-enumerator"; "libxslt" = dontDistribute super."libxslt"; "life" = dontDistribute super."life"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -4981,6 +5019,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; "logging-effect" = dontDistribute super."logging-effect"; @@ -5015,6 +5054,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -5064,6 +5104,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -5082,6 +5123,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_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; @@ -5104,6 +5146,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_7_0"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5118,6 +5161,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5243,6 +5287,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5443,6 +5488,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = doDistribute super."nested-routes_7_0_0"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5589,6 +5635,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -5694,6 +5741,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5858,6 +5906,7 @@ self: super: { "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; "pinch" = doDistribute super."pinch_0_2_0_1"; + "pinchot" = doDistribute super."pinchot_0_18_0_2"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes-async" = dontDistribute super."pipes-async"; @@ -5896,6 +5945,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; @@ -6143,6 +6193,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6199,6 +6253,7 @@ self: super: { "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow" = doDistribute super."rainbow_0_28_0_0"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_8"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6378,6 +6433,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -6402,6 +6458,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5"; "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; @@ -6587,6 +6644,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -6598,6 +6656,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -6679,6 +6738,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -6785,6 +6845,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -6905,6 +6966,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -6989,9 +7051,11 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "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_14_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7213,7 +7277,9 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7235,6 +7301,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7248,6 +7315,7 @@ self: super: { "teams" = dontDistribute super."teams"; "teeth" = dontDistribute super."teeth"; "telegram" = dontDistribute super."telegram"; + "telegram-api" = doDistribute super."telegram-api_0_4_3_0"; "teleport" = dontDistribute super."teleport"; "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; @@ -7327,6 +7395,7 @@ self: super: { "text-utf7" = dontDistribute super."text-utf7"; "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7359,6 +7428,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -7733,6 +7803,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -7750,6 +7821,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -7937,6 +8009,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.4.nix b/pkgs/development/haskell-modules/configuration-lts-6.4.nix index 10a4c6a780b..f81089bf70c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.4.nix @@ -126,6 +126,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_3_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -186,6 +187,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -399,6 +401,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -869,6 +872,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1606,6 +1610,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1782,7 +1787,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -1857,6 +1864,7 @@ self: super: { "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_8"; "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_8"; "clay" = doDistribute super."clay_0_10_1"; + "clckwrks" = doDistribute super."clckwrks_0_23_16"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -1870,6 +1878,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2051,6 +2060,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2074,6 +2084,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2144,6 +2155,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2215,8 +2227,10 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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_1_0"; "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"; @@ -2226,6 +2240,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2273,6 +2288,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2460,6 +2476,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2754,6 +2771,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -2900,6 +2918,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3025,6 +3044,7 @@ self: super: { "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_10_5"; "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; "generic-maybe" = dontDistribute super."generic-maybe"; "generic-pretty" = dontDistribute super."generic-pretty"; @@ -3033,6 +3053,7 @@ self: super: { "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3044,6 +3065,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3054,6 +3078,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3081,6 +3106,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3117,6 +3144,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3354,6 +3382,7 @@ self: super: { "graphmod" = dontDistribute super."graphmod"; "graphql" = dontDistribute super."graphql"; "graphtype" = dontDistribute super."graphtype"; + "graphviz" = doDistribute super."graphviz_2999_18_1_0"; "grasp" = dontDistribute super."grasp"; "gray-code" = dontDistribute super."gray-code"; "gray-extended" = dontDistribute super."gray-extended"; @@ -3545,6 +3574,7 @@ self: super: { "happs-tutorial" = dontDistribute super."happs-tutorial"; "happstack" = dontDistribute super."happstack"; "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_4_2"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3782,9 +3812,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4228,6 +4260,7 @@ self: super: { "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4269,6 +4302,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4278,6 +4312,7 @@ self: super: { "http-test" = dontDistribute super."http-test"; "http-trace" = dontDistribute super."http-trace"; "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_6_0"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; "httpspec" = dontDistribute super."httpspec"; @@ -4600,6 +4635,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4638,6 +4674,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4679,6 +4716,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_2"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4722,6 +4760,7 @@ self: super: { "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; "lambdacube-engine" = dontDistribute super."lambdacube-engine"; "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; @@ -4859,6 +4898,7 @@ self: super: { "libxml-enumerator" = dontDistribute super."libxml-enumerator"; "libxslt" = dontDistribute super."libxslt"; "life" = dontDistribute super."life"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -4965,6 +5005,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; "logging-effect" = dontDistribute super."logging-effect"; @@ -4999,6 +5040,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -5048,6 +5090,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -5066,6 +5109,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_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; @@ -5088,6 +5132,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_7_0"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5102,6 +5147,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5227,6 +5273,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5424,6 +5471,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = doDistribute super."nested-routes_7_0_0"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5569,6 +5617,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -5674,6 +5723,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5836,6 +5886,7 @@ self: super: { "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; "pinch" = doDistribute super."pinch_0_2_0_1"; + "pinchot" = doDistribute super."pinchot_0_18_0_2"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes-async" = dontDistribute super."pipes-async"; @@ -5874,6 +5925,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; @@ -6121,6 +6173,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6175,7 +6231,9 @@ self: super: { "radix" = dontDistribute super."radix"; "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow" = doDistribute super."rainbow_0_28_0_2"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_8"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6352,6 +6410,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -6376,6 +6435,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5"; "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; @@ -6561,6 +6621,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -6572,6 +6633,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -6653,6 +6715,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -6757,6 +6820,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -6877,6 +6941,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -6961,9 +7026,11 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "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_14_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7183,7 +7250,9 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7205,6 +7274,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7218,6 +7288,7 @@ self: super: { "teams" = dontDistribute super."teams"; "teeth" = dontDistribute super."teeth"; "telegram" = dontDistribute super."telegram"; + "telegram-api" = doDistribute super."telegram-api_0_4_3_0"; "teleport" = dontDistribute super."teleport"; "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; @@ -7296,6 +7367,7 @@ self: super: { "text-utf7" = dontDistribute super."text-utf7"; "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7328,6 +7400,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -7701,6 +7774,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -7718,6 +7792,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -7837,6 +7912,7 @@ self: super: { "wai-test" = dontDistribute super."wai-test"; "wai-thrift" = dontDistribute super."wai-thrift"; "wai-throttler" = dontDistribute super."wai-throttler"; + "wai-transformers" = doDistribute super."wai-transformers_0_0_6"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; "warc" = dontDistribute super."warc"; @@ -7904,6 +7980,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.5.nix b/pkgs/development/haskell-modules/configuration-lts-6.5.nix index ea5bde113e9..3547508f8c5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.5.nix @@ -126,6 +126,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_3_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -186,6 +187,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -397,6 +399,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -867,6 +870,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1281,6 +1285,7 @@ self: super: { "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = doDistribute super."atom-conduit_0_3_1_1"; "atom-msp430" = dontDistribute super."atom-msp430"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; @@ -1602,6 +1607,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1777,7 +1783,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -1852,6 +1860,7 @@ self: super: { "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_8"; "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_8"; "clay" = doDistribute super."clay_0_10_1"; + "clckwrks" = doDistribute super."clckwrks_0_23_16"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -1864,6 +1873,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2045,6 +2055,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2068,6 +2079,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2137,6 +2149,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2208,8 +2221,10 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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_1_0"; "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"; @@ -2219,6 +2234,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2266,6 +2282,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2452,6 +2469,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2745,6 +2763,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -2891,6 +2910,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3016,6 +3036,7 @@ self: super: { "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_10_5"; "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; "generic-maybe" = dontDistribute super."generic-maybe"; "generic-pretty" = dontDistribute super."generic-pretty"; @@ -3024,6 +3045,7 @@ self: super: { "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3035,6 +3057,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3045,6 +3070,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3072,6 +3098,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3108,6 +3136,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3345,6 +3374,7 @@ self: super: { "graphmod" = dontDistribute super."graphmod"; "graphql" = dontDistribute super."graphql"; "graphtype" = dontDistribute super."graphtype"; + "graphviz" = doDistribute super."graphviz_2999_18_1_0"; "grasp" = dontDistribute super."grasp"; "gray-code" = dontDistribute super."gray-code"; "gray-extended" = dontDistribute super."gray-extended"; @@ -3535,6 +3565,7 @@ self: super: { "happs-tutorial" = dontDistribute super."happs-tutorial"; "happstack" = dontDistribute super."happstack"; "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_4_2"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3771,9 +3802,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4216,6 +4249,7 @@ self: super: { "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4257,6 +4291,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4266,6 +4301,7 @@ self: super: { "http-test" = dontDistribute super."http-test"; "http-trace" = dontDistribute super."http-trace"; "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_6_0"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; "httpspec" = dontDistribute super."httpspec"; @@ -4587,6 +4623,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4625,6 +4662,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4666,6 +4704,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_2"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4709,6 +4748,7 @@ self: super: { "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; "lambdacube-engine" = dontDistribute super."lambdacube-engine"; "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; @@ -4843,6 +4883,7 @@ self: super: { "libxml-enumerator" = dontDistribute super."libxml-enumerator"; "libxslt" = dontDistribute super."libxslt"; "life" = dontDistribute super."life"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -4949,6 +4990,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; "logging-effect" = dontDistribute super."logging-effect"; @@ -4983,6 +5025,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -5032,6 +5075,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -5050,6 +5094,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_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; @@ -5072,6 +5117,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_7_0"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5086,6 +5132,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5211,6 +5258,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5406,6 +5454,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = doDistribute super."nested-routes_7_0_0"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5551,6 +5600,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -5656,6 +5706,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5816,6 +5867,7 @@ self: super: { "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; "pinch" = doDistribute super."pinch_0_2_0_1"; + "pinchot" = doDistribute super."pinchot_0_18_0_2"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes-async" = dontDistribute super."pipes-async"; @@ -5853,6 +5905,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; @@ -6100,6 +6153,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6152,7 +6209,9 @@ self: super: { "radix" = dontDistribute super."radix"; "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow" = doDistribute super."rainbow_0_28_0_2"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_8"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6326,6 +6385,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -6350,6 +6410,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5"; "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; @@ -6535,6 +6596,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -6546,6 +6608,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -6627,6 +6690,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -6730,6 +6794,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -6848,6 +6913,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -6931,9 +6997,11 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "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_14_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7151,7 +7219,9 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7173,6 +7243,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7186,6 +7257,7 @@ self: super: { "teams" = dontDistribute super."teams"; "teeth" = dontDistribute super."teeth"; "telegram" = dontDistribute super."telegram"; + "telegram-api" = doDistribute super."telegram-api_0_4_3_0"; "teleport" = dontDistribute super."teleport"; "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; @@ -7261,6 +7333,7 @@ self: super: { "text-utf7" = dontDistribute super."text-utf7"; "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7291,6 +7364,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -7661,6 +7735,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -7678,6 +7753,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -7797,6 +7873,7 @@ self: super: { "wai-test" = dontDistribute super."wai-test"; "wai-thrift" = dontDistribute super."wai-thrift"; "wai-throttler" = dontDistribute super."wai-throttler"; + "wai-transformers" = doDistribute super."wai-transformers_0_0_6"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; "warc" = dontDistribute super."warc"; @@ -7863,6 +7940,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7932,6 +8010,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_2_2"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.6.nix b/pkgs/development/haskell-modules/configuration-lts-6.6.nix index e90a3c848dc..017412c76ba 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.6.nix @@ -126,6 +126,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_3_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -185,6 +186,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -395,6 +397,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -864,6 +867,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1277,6 +1281,7 @@ self: super: { "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = doDistribute super."atom-conduit_0_3_1_1"; "atom-msp430" = dontDistribute super."atom-msp430"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; @@ -1597,6 +1602,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1772,7 +1778,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -1847,6 +1855,7 @@ self: super: { "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_8"; "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_8"; "clay" = doDistribute super."clay_0_10_1"; + "clckwrks" = doDistribute super."clckwrks_0_23_16"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -1859,6 +1868,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2040,6 +2050,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2063,6 +2074,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2132,6 +2144,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2203,8 +2216,10 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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_1_0"; "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"; @@ -2214,6 +2229,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2261,6 +2277,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2447,6 +2464,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2740,6 +2758,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -2886,6 +2905,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3011,6 +3031,7 @@ self: super: { "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_10_5"; "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; "generic-maybe" = dontDistribute super."generic-maybe"; "generic-pretty" = dontDistribute super."generic-pretty"; @@ -3019,6 +3040,7 @@ self: super: { "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3030,6 +3052,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3040,6 +3065,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3067,6 +3093,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3103,6 +3131,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3340,6 +3369,7 @@ self: super: { "graphmod" = dontDistribute super."graphmod"; "graphql" = dontDistribute super."graphql"; "graphtype" = dontDistribute super."graphtype"; + "graphviz" = doDistribute super."graphviz_2999_18_1_0"; "grasp" = dontDistribute super."grasp"; "gray-code" = dontDistribute super."gray-code"; "gray-extended" = dontDistribute super."gray-extended"; @@ -3530,6 +3560,7 @@ self: super: { "happs-tutorial" = dontDistribute super."happs-tutorial"; "happstack" = dontDistribute super."happstack"; "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_4_2"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3766,9 +3797,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4210,6 +4243,7 @@ self: super: { "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4250,6 +4284,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4259,6 +4294,7 @@ self: super: { "http-test" = dontDistribute super."http-test"; "http-trace" = dontDistribute super."http-trace"; "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_6_0"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; "httpspec" = dontDistribute super."httpspec"; @@ -4580,6 +4616,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4618,6 +4655,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4659,6 +4697,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_2"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4702,6 +4741,7 @@ self: super: { "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; "lambdacube-engine" = dontDistribute super."lambdacube-engine"; "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; @@ -4836,6 +4876,7 @@ self: super: { "libxml-enumerator" = dontDistribute super."libxml-enumerator"; "libxslt" = dontDistribute super."libxslt"; "life" = dontDistribute super."life"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -4942,6 +4983,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; "logging-effect" = dontDistribute super."logging-effect"; @@ -4976,6 +5018,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -5025,6 +5068,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -5043,6 +5087,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_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; @@ -5065,6 +5110,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_7_0"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5079,6 +5125,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5200,6 +5247,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5395,6 +5443,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = doDistribute super."nested-routes_7_0_0"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5540,6 +5589,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -5644,6 +5694,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5804,6 +5855,7 @@ self: super: { "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; "pinch" = doDistribute super."pinch_0_2_0_1"; + "pinchot" = doDistribute super."pinchot_0_18_0_2"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes-async" = dontDistribute super."pipes-async"; @@ -5841,6 +5893,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; @@ -6086,6 +6139,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6138,7 +6195,9 @@ self: super: { "radix" = dontDistribute super."radix"; "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow" = doDistribute super."rainbow_0_28_0_2"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_8"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6312,6 +6371,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -6336,6 +6396,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5"; "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; @@ -6494,6 +6555,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6520,6 +6582,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -6531,6 +6594,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -6611,6 +6675,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -6713,6 +6778,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -6831,6 +6897,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -6914,9 +6981,11 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "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_14_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7134,7 +7203,9 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7156,6 +7227,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7169,6 +7241,7 @@ self: super: { "teams" = dontDistribute super."teams"; "teeth" = dontDistribute super."teeth"; "telegram" = dontDistribute super."telegram"; + "telegram-api" = doDistribute super."telegram-api_0_4_3_0"; "teleport" = dontDistribute super."teleport"; "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; @@ -7244,6 +7317,7 @@ self: super: { "text-utf7" = dontDistribute super."text-utf7"; "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7274,6 +7348,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -7643,6 +7718,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -7660,6 +7736,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -7779,6 +7856,7 @@ self: super: { "wai-test" = dontDistribute super."wai-test"; "wai-thrift" = dontDistribute super."wai-thrift"; "wai-throttler" = dontDistribute super."wai-throttler"; + "wai-transformers" = doDistribute super."wai-transformers_0_0_6"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; "warc" = dontDistribute super."warc"; @@ -7844,6 +7922,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7913,6 +7992,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_2_2"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.7.nix b/pkgs/development/haskell-modules/configuration-lts-6.7.nix new file mode 100644 index 00000000000..afbe25cc30d --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-6.7.nix @@ -0,0 +1,8169 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-6.7 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AFSM" = dontDistribute super."AFSM"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_5_1"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_3_1"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "Chart" = doDistribute super."Chart_1_6"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_6"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_6"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "Delta-Lambda" = dontDistribute super."Delta-Lambda"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "Diff" = doDistribute super."Diff_0_3_2"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "EdisonAPI" = doDistribute super."EdisonAPI_1_3"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "Gifcurry" = dontDistribute super."Gifcurry"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "H" = doDistribute super."H_0_8_0_0"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPath" = dontDistribute super."HPath"; + "HPhone" = dontDistribute super."HPhone"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IOSpec" = dontDistribute super."IOSpec"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaDB" = dontDistribute super."LambdaDB"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "LibZip" = dontDistribute super."LibZip"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingH" = doDistribute super."MissingH_1_3_0_2"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PUH-Project" = dontDistribute super."PUH-Project"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = doDistribute super."PortMidi_0_1_6_0"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "QuickCheck-safe" = dontDistribute super."QuickCheck-safe"; + "QuickPlot" = dontDistribute super."QuickPlot"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SimpleServer" = dontDistribute super."SimpleServer"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "Stream" = dontDistribute super."Stream"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "Verba" = dontDistribute super."Verba"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "Vulkan" = dontDistribute super."Vulkan"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abnf" = dontDistribute super."abnf"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-typelits" = dontDistribute super."accelerate-typelits"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "accuerr" = dontDistribute super."accuerr"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "adler32" = dontDistribute super."adler32"; + "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; + "adp-multi" = dontDistribute super."adp-multi"; + "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-coerce" = dontDistribute super."aeson-coerce"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; + "aeson-schema" = dontDistribute super."aeson-schema"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "ag-pictgen" = dontDistribute super."ag-pictgen"; + "agda-server" = dontDistribute super."agda-server"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_5_0"; + "aivika" = dontDistribute super."aivika"; + "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-lattice" = dontDistribute super."aivika-lattice"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_9"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; + "ampersand" = dontDistribute super."ampersand"; + "amqp" = doDistribute super."amqp_0_13_1"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; + "annihilator" = dontDistribute super."annihilator"; + "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; + "ansi-pretty" = dontDistribute super."ansi-pretty"; + "ansigraph" = dontDistribute super."ansigraph"; + "antagonist" = dontDistribute super."antagonist"; + "antfarm" = dontDistribute super."antfarm"; + "anticiv" = dontDistribute super."anticiv"; + "antigate" = dontDistribute super."antigate"; + "antimirov" = dontDistribute super."antimirov"; + "antiquoter" = dontDistribute super."antiquoter"; + "antisplice" = dontDistribute super."antisplice"; + "antlrc" = dontDistribute super."antlrc"; + "anydbm" = dontDistribute super."anydbm"; + "aosd" = dontDistribute super."aosd"; + "ap-reflect" = dontDistribute super."ap-reflect"; + "apache-md5" = dontDistribute super."apache-md5"; + "apelsin" = dontDistribute super."apelsin"; + "api-builder" = dontDistribute super."api-builder"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; + "apiary-purescript" = dontDistribute super."apiary-purescript"; + "apis" = dontDistribute super."apis"; + "apotiki" = dontDistribute super."apotiki"; + "app-lens" = dontDistribute super."app-lens"; + "appc" = dontDistribute super."appc"; + "applicative-extras" = dontDistribute super."applicative-extras"; + "applicative-fail" = dontDistribute super."applicative-fail"; + "applicative-numbers" = dontDistribute super."applicative-numbers"; + "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = dontDistribute super."argon"; + "argon2" = dontDistribute super."argon2"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "arrows" = dontDistribute super."arrows"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-flatten" = dontDistribute super."ascii-flatten"; + "ascii-table" = dontDistribute super."ascii-table"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-extras" = dontDistribute super."async-extras"; + "async-manager" = dontDistribute super."async-manager"; + "async-pool" = dontDistribute super."async-pool"; + "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions"; + "aterm" = dontDistribute super."aterm"; + "aterm-utils" = dontDistribute super."aterm-utils"; + "atl" = dontDistribute super."atl"; + "atlassian-connect-core" = dontDistribute super."atlassian-connect-core"; + "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor"; + "atmos" = dontDistribute super."atmos"; + "atmos-dimensional" = dontDistribute super."atmos-dimensional"; + "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = doDistribute super."atom-conduit_0_3_1_1"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomo" = dontDistribute super."atomo"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "atrans" = dontDistribute super."atrans"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "aur-api" = dontDistribute super."aur-api"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "automitive-cse" = dontDistribute super."automitive-cse"; + "automotive-cse" = dontDistribute super."automotive-cse"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "avwx" = dontDistribute super."avwx"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_2"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = doDistribute super."base-noprelude_4_8_2_0"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bcrypt" = doDistribute super."bcrypt_0_0_8"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beam-th" = dontDistribute super."beam-th"; + "beamable" = dontDistribute super."beamable"; + "bearriver" = dontDistribute super."bearriver"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "bencoding" = dontDistribute super."bencoding"; + "berkeleydb" = dontDistribute super."berkeleydb"; + "berp" = dontDistribute super."berp"; + "bert" = dontDistribute super."bert"; + "besout" = dontDistribute super."besout"; + "bet" = dontDistribute super."bet"; + "betacode" = dontDistribute super."betacode"; + "between" = dontDistribute super."between"; + "bf-cata" = dontDistribute super."bf-cata"; + "bff" = dontDistribute super."bff"; + "bff-mono" = dontDistribute super."bff-mono"; + "bgmax" = dontDistribute super."bgmax"; + "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimaps" = dontDistribute super."bimaps"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-libzip" = dontDistribute super."bindings-libzip"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bini" = dontDistribute super."bini"; + "bio" = dontDistribute super."bio"; + "biohazard" = dontDistribute super."biohazard"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biophd" = doDistribute super."biophd_0_0_4"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits" = doDistribute super."bits_0_4"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blatex" = dontDistribute super."blatex"; + "blaze" = dontDistribute super."blaze"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "bmp" = doDistribute super."bmp_1_2_5_2"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boombox" = dontDistribute super."boombox"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "boring-window-switcher" = dontDistribute super."boring-window-switcher"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; + "bpann" = dontDistribute super."bpann"; + "braid" = dontDistribute super."braid"; + "brainfuck" = dontDistribute super."brainfuck"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brick" = doDistribute super."brick_0_4_1"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffer-pipe" = dontDistribute super."buffer-pipe"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "butterflies" = dontDistribute super."butterflies"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-builder" = doDistribute super."bytestring-builder_0_10_6_0_0"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-helper" = doDistribute super."cabal-helper_0_6_3_1"; + "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install" = doDistribute super."cabal-install_1_22_9_0"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cache" = dontDistribute super."cache"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = doDistribute super."cacophony_0_6_0"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_1"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "calendar-recycling" = dontDistribute super."calendar-recycling"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "cartel" = doDistribute super."cartel_0_16_0_0"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "casr-logbook" = dontDistribute super."casr-logbook"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-megaparsec" = dontDistribute super."cassava-megaparsec"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; + "category-traced" = dontDistribute super."category-traced"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; + "chorale-geo" = dontDistribute super."chorale-geo"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "circlehs" = dontDistribute super."circlehs"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "classy-prelude" = doDistribute super."classy-prelude_0_12_8"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_8"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_8"; + "clay" = doDistribute super."clay_0_10_1"; + "clckwrks" = doDistribute super."clckwrks_0_23_16"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "cloben" = dontDistribute super."cloben"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_4_0_10"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coin" = dontDistribute super."coin"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "colonnade" = dontDistribute super."colonnade"; + "color-counter" = dontDistribute super."color-counter"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "comonad" = doDistribute super."comonad_4_2_7_2"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "cond" = dontDistribute super."cond"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-merge" = dontDistribute super."conduit-merge"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; + "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "config-value-getopt" = dontDistribute super."config-value-getopt"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "container-builder" = dontDistribute super."container-builder"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cql" = doDistribute super."cql_3_0_7"; + "cql-io" = doDistribute super."cql-io_0_15_2"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; + "crc16" = dontDistribute super."crc16"; + "crc16-table" = dontDistribute super."crc16-table"; + "creatur" = dontDistribute super."creatur"; + "crf-chain1" = dontDistribute super."crf-chain1"; + "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained"; + "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; + "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; + "critbit" = dontDistribute super."critbit"; + "criterion-plus" = dontDistribute super."criterion-plus"; + "criterion-to-html" = dontDistribute super."criterion-to-html"; + "crockford" = dontDistribute super."crockford"; + "crocodile" = dontDistribute super."crocodile"; + "cron-compat" = dontDistribute super."cron-compat"; + "cruncher-types" = dontDistribute super."cruncher-types"; + "crunghc" = dontDistribute super."crunghc"; + "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks"; + "crypto-classical" = dontDistribute super."crypto-classical"; + "crypto-conduit" = dontDistribute super."crypto-conduit"; + "crypto-enigma" = dontDistribute super."crypto-enigma"; + "crypto-multihash" = dontDistribute super."crypto-multihash"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; + "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; + "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; + "cryptonite" = doDistribute super."cryptonite_0_15"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "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"; + "css-text" = doDistribute super."css-text_0_1_2_1"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; + "csv-to-qif" = dontDistribute super."csv-to-qif"; + "ctemplate" = dontDistribute super."ctemplate"; + "ctkl" = dontDistribute super."ctkl"; + "ctpl" = dontDistribute super."ctpl"; + "cube" = dontDistribute super."cube"; + "cubical" = dontDistribute super."cubical"; + "cubicbezier" = dontDistribute super."cubicbezier"; + "cublas" = dontDistribute super."cublas"; + "cuboid" = dontDistribute super."cuboid"; + "cuda" = dontDistribute super."cuda"; + "cudd" = dontDistribute super."cudd"; + "cufft" = dontDistribute super."cufft"; + "curl-aeson" = dontDistribute super."curl-aeson"; + "curlhs" = dontDistribute super."curlhs"; + "currency" = dontDistribute super."currency"; + "current-locale" = dontDistribute super."current-locale"; + "curry-base" = dontDistribute super."curry-base"; + "curry-frontend" = dontDistribute super."curry-frontend"; + "cursedcsv" = dontDistribute super."cursedcsv"; + "curve25519" = dontDistribute super."curve25519"; + "curves" = dontDistribute super."curves"; + "custom-prelude" = dontDistribute super."custom-prelude"; + "cv-combinators" = dontDistribute super."cv-combinators"; + "cyclotomic" = dontDistribute super."cyclotomic"; + "cypher" = dontDistribute super."cypher"; + "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs-benchmark" = dontDistribute super."darcs-benchmark"; + "darcs-beta" = dontDistribute super."darcs-beta"; + "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; + "darcs-cabalized" = dontDistribute super."darcs-cabalized"; + "darcs-fastconvert" = dontDistribute super."darcs-fastconvert"; + "darcs-graph" = dontDistribute super."darcs-graph"; + "darcs-monitor" = dontDistribute super."darcs-monitor"; + "darcs-scripts" = dontDistribute super."darcs-scripts"; + "darcs2dot" = dontDistribute super."darcs2dot"; + "darcsden" = dontDistribute super."darcsden"; + "darcswatch" = dontDistribute super."darcswatch"; + "darkplaces-demo" = dontDistribute super."darkplaces-demo"; + "darkplaces-rcon" = dontDistribute super."darkplaces-rcon"; + "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util"; + "darkplaces-text" = dontDistribute super."darkplaces-text"; + "dash-haskell" = dontDistribute super."dash-haskell"; + "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib"; + "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd"; + "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf"; + "data-accessor-template" = dontDistribute super."data-accessor-template"; + "data-accessor-transformers" = dontDistribute super."data-accessor-transformers"; + "data-aviary" = dontDistribute super."data-aviary"; + "data-base" = dontDistribute super."data-base"; + "data-bword" = dontDistribute super."data-bword"; + "data-carousel" = dontDistribute super."data-carousel"; + "data-category" = dontDistribute super."data-category"; + "data-cell" = dontDistribute super."data-cell"; + "data-checked" = dontDistribute super."data-checked"; + "data-clist" = dontDistribute super."data-clist"; + "data-concurrent-queue" = dontDistribute super."data-concurrent-queue"; + "data-construction" = dontDistribute super."data-construction"; + "data-cycle" = dontDistribute super."data-cycle"; + "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; + "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_1_0"; + "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-elf" = dontDistribute super."data-elf"; + "data-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-function-meld" = dontDistribute super."data-function-meld"; + "data-function-tacit" = dontDistribute super."data-function-tacit"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-json-token" = dontDistribute super."data-json-token"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-result" = dontDistribute super."data-result"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "datadog" = dontDistribute super."datadog"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddate" = dontDistribute super."ddate"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = doDistribute super."debian-build_0_9_2_0"; + "debug-diff" = dontDistribute super."debug-diff"; + "debug-time" = dontDistribute super."debug-time"; + "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "decode-utf8" = dontDistribute super."decode-utf8"; + "decoder-conduit" = dontDistribute super."decoder-conduit"; + "dedukti" = dontDistribute super."dedukti"; + "deepcontrol" = dontDistribute super."deepcontrol"; + "deeplearning-hs" = dontDistribute super."deeplearning-hs"; + "deepseq-bounded" = dontDistribute super."deepseq-bounded"; + "deepseq-generics" = doDistribute super."deepseq-generics_0_1_1_2"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "delude" = dontDistribute super."delude"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dense" = dontDistribute super."dense"; + "dependent-state" = dontDistribute super."dependent-state"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-monoid" = dontDistribute super."derive-monoid"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = doDistribute super."deriving-compat_0_2"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_10"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "diagrams-wx" = dontDistribute super."diagrams-wx"; + "dialog" = dontDistribute super."dialog"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictionary-sharing" = dontDistribute super."dictionary-sharing"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-ekg" = dontDistribute super."distributed-process-ekg"; + "distributed-process-lifted" = dontDistribute super."distributed-process-lifted"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distribution" = dontDistribute super."distribution"; + "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "djembe" = dontDistribute super."djembe"; + "djinn" = dontDistribute super."djinn"; + "djinn-th" = dontDistribute super."djinn-th"; + "dnscache" = dontDistribute super."dnscache"; + "dnsrbl" = dontDistribute super."dnsrbl"; + "dnssd" = dontDistribute super."dnssd"; + "doc-review" = dontDistribute super."doc-review"; + "doccheck" = dontDistribute super."doccheck"; + "docidx" = dontDistribute super."docidx"; + "docker" = dontDistribute super."docker"; + "dockercook" = dontDistribute super."dockercook"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "docvim" = dontDistribute super."docvim"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-parser" = dontDistribute super."dom-parser"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot-linker" = dontDistribute super."dot-linker"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_3_0_1"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "dpor" = doDistribute super."dpor_0_1_0_1"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "drmaa" = dontDistribute super."drmaa"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "dunai" = dontDistribute super."dunai"; + "duplo" = dontDistribute super."duplo"; + "dustme" = dontDistribute super."dustme"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynobud" = dontDistribute super."dynobud"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ec2-unikernel" = dontDistribute super."ec2-unikernel"; + "eccrypto" = dontDistribute super."eccrypto"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "eithers" = dontDistribute super."eithers"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elision" = dontDistribute super."elision"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-export" = dontDistribute super."elm-export"; + "elm-get" = dontDistribute super."elm-get"; + "elm-hybrid" = dontDistribute super."elm-hybrid"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validate-json" = dontDistribute super."email-validate-json"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "enchant" = dontDistribute super."enchant"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-growler" = dontDistribute super."engine-io-growler"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envparse" = dontDistribute super."envparse"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "eternal" = dontDistribute super."eternal"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventsourced" = dontDistribute super."eventsourced"; + "eventstore" = doDistribute super."eventstore_0_12_0_0"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "existential" = dontDistribute super."existential"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "external-sort" = dontDistribute super."external-sort"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "failure-detector" = dontDistribute super."failure-detector"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; + "fca" = dontDistribute super."fca"; + "fcache" = dontDistribute super."fcache"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-gipeda" = dontDistribute super."feed-gipeda"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fitspec" = dontDistribute super."fitspec"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixfile" = dontDistribute super."fixfile"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "fizzbuzz" = dontDistribute super."fizzbuzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow-er" = dontDistribute super."flow-er"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock" = dontDistribute super."flowdock"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-demos" = dontDistribute super."fltkhs-demos"; + "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "foobar" = dontDistribute super."foobar"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "fraxl" = dontDistribute super."fraxl"; + "freddy" = dontDistribute super."freddy"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "freekick2" = dontDistribute super."freekick2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frown" = dontDistribute super."frown"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcons-tools" = dontDistribute super."funcons-tools"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funnyprint" = dontDistribute super."funnyprint"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gdo" = dontDistribute super."gdo"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-deriving" = doDistribute super."generic-deriving_1_10_5"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-random" = dontDistribute super."generic-random"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; + "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"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dump-tree" = dontDistribute super."ghc-dump-tree"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-history-parser" = dontDistribute super."ghci-history-parser"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; + "ghcjs-dom" = doDistribute super."ghcjs-dom_0_2_4_0"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-dom-jsaddle" = dontDistribute super."ghcjs-dom-jsaddle"; + "ghcjs-dom-jsffi" = dontDistribute super."ghcjs-dom-jsffi"; + "ghcjs-dom-webkit" = dontDistribute super."ghcjs-dom-webkit"; + "ghcjs-hplay" = dontDistribute super."ghcjs-hplay"; + "ghcjs-perch" = dontDistribute super."ghcjs-perch"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-girepository" = dontDistribute super."gi-girepository"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; + "gi-gtk-hs" = dontDistribute super."gi-gtk-hs"; + "gi-gtkosxapplication" = dontDistribute super."gi-gtkosxapplication"; + "gi-gtksource" = dontDistribute super."gi-gtksource"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pangocairo" = dontDistribute super."gi-pangocairo"; + "gi-poppler" = dontDistribute super."gi-poppler"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gi-webkit2" = dontDistribute super."gi-webkit2"; + "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_1"; + "gipeda" = doDistribute super."gipeda_0_2_0_1"; + "gist" = dontDistribute super."gist"; + "git" = dontDistribute super."git"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160511"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-utils" = dontDistribute super."github-utils"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; + "givegif" = dontDistribute super."givegif"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_2"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudmonitoring" = dontDistribute super."gogol-cloudmonitoring"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-dataproc" = dontDistribute super."gogol-dataproc"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-firebase-rules" = dontDistribute super."gogol-firebase-rules"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-kgsearch" = dontDistribute super."gogol-kgsearch"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-people" = dontDistribute super."gogol-people"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-script" = dontDistribute super."gogol-script"; + "gogol-sheets" = dontDistribute super."gogol-sheets"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-vision" = dontDistribute super."gogol-vision"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "google-translate" = dontDistribute super."google-translate"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpio" = dontDistribute super."gpio"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "graphviz" = doDistribute super."graphviz_2999_18_1_0"; + "grasp" = dontDistribute super."grasp"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "greplicate" = dontDistribute super."greplicate"; + "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_14_2"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_5"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_2"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = doDistribute super."gtksourceview3_0_13_2_1"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "guid" = dontDistribute super."guid"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hOpenPGP" = doDistribute super."hOpenPGP_2_4_4"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hablog" = dontDistribute super."hablog"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-api" = doDistribute super."haddock-api_2_16_1"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "haddock-library" = doDistribute super."haddock-library_1_2_1"; + "haddock-test" = dontDistribute super."haddock-test"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hahp" = dontDistribute super."hahp"; + "haiji" = dontDistribute super."haiji"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv"; + "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_4_2"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hardware-edsl" = dontDistribute super."hardware-edsl"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harpy" = dontDistribute super."harpy"; + "harvest-api" = dontDistribute super."harvest-api"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascar" = dontDistribute super."hascar"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashing" = dontDistribute super."hashing"; + "hashmap" = dontDistribute super."hashmap"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_3"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-fake-user-agent" = dontDistribute super."haskell-fake-user-agent"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = doDistribute super."haskell-gi_0_17_4"; + "haskell-gi-base" = doDistribute super."haskell-gi-base_0_17"; + "haskell-google-trends" = dontDistribute super."haskell-google-trends"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-kubernetes" = dontDistribute super."haskell-kubernetes"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpfr" = dontDistribute super."haskell-mpfr"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = dontDistribute super."haskell-names"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = dontDistribute super."haskell-packages"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-player" = dontDistribute super."haskell-player"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-proxy-list" = dontDistribute super."haskell-proxy-list"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tools-ast" = dontDistribute super."haskell-tools-ast"; + "haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc"; + "haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen"; + "haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf"; + "haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint"; + "haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskelzinc" = dontDistribute super."haskelzinc"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql-backend" = dontDistribute super."hasql-backend"; + "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres" = dontDistribute super."hasql-postgres"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcoap" = dontDistribute super."hcoap"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "hdr-histogram" = dontDistribute super."hdr-histogram"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; + "hedis" = doDistribute super."hedis_0_6_10"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "helix" = dontDistribute super."helix"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesh" = dontDistribute super."hesh"; + "hesql" = dontDistribute super."hesql"; + "hetero-dict" = dontDistribute super."hetero-dict"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hi3status" = dontDistribute super."hi3status"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "hindley-milner" = dontDistribute super."hindley-milner"; + "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; + "hinduce-classifier" = dontDistribute super."hinduce-classifier"; + "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; + "hinduce-examples" = dontDistribute super."hinduce-examples"; + "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_5_2"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hip" = dontDistribute super."hip"; + "hipbot" = dontDistribute super."hipbot"; + "hipchat-hs" = dontDistribute super."hipchat-hs"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hit-graph" = dontDistribute super."hit-graph"; + "hjcase" = dontDistribute super."hjcase"; + "hjs" = dontDistribute super."hjs"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hkdf" = dontDistribute super."hkdf"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hleap" = dontDistribute super."hleap"; + "hledger" = doDistribute super."hledger_0_27"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-lib" = doDistribute super."hledger-lib_0_27"; + "hledger-ui" = doDistribute super."hledger-ui_0_27_4"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-repa" = dontDistribute super."hmatrix-repa"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homoiconic" = dontDistribute super."homoiconic"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_43"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_18"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hoppy-docs" = dontDistribute super."hoppy-docs"; + "hoppy-generator" = dontDistribute super."hoppy-generator"; + "hoppy-runtime" = dontDistribute super."hoppy-runtime"; + "hoppy-std" = dontDistribute super."hoppy-std"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; + "hpio" = dontDistribute super."hpio"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_2_0"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-popen" = dontDistribute super."hs-popen"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsay" = dontDistribute super."hsay"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = doDistribute super."hspec-megaparsec_0_1_1"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec2" = dontDistribute super."hspec2"; + "hspr-sh" = dontDistribute super."hspr-sh"; + "hspread" = dontDistribute super."hspread"; + "hspresent" = dontDistribute super."hspresent"; + "hsprocess" = dontDistribute super."hsprocess"; + "hsql" = dontDistribute super."hsql"; + "hsql-mysql" = dontDistribute super."hsql-mysql"; + "hsql-odbc" = dontDistribute super."hsql-odbc"; + "hsql-postgresql" = dontDistribute super."hsql-postgresql"; + "hsql-sqlite3" = dontDistribute super."hsql-sqlite3"; + "hsqml" = dontDistribute super."hsqml"; + "hsqml-datamodel" = dontDistribute super."hsqml-datamodel"; + "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl"; + "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris"; + "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes"; + "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; + "hsqml-morris" = dontDistribute super."hsqml-morris"; + "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; + "hsyslog-udp" = dontDistribute super."hsyslog-udp"; + "hszephyr" = dontDistribute super."hszephyr"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-parse" = dontDistribute super."html-parse"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-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-media" = doDistribute super."http-media_0_6_3"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-trace" = dontDistribute super."http-trace"; + "http-wget" = dontDistribute super."http-wget"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hw-json" = doDistribute super."hw-json_0_0_0_2"; + "hw-prim" = doDistribute super."hw-prim_0_0_0_10"; + "hw-rankselect" = doDistribute super."hw-rankselect_0_0_0_2"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hws" = dontDistribute super."hws"; + "hwsl2" = dontDistribute super."hwsl2"; + "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; + "hwsl2-reducers" = dontDistribute super."hwsl2-reducers"; + "hx" = dontDistribute super."hx"; + "hxmppc" = dontDistribute super."hxmppc"; + "hxournal" = dontDistribute super."hxournal"; + "hxt-binary" = dontDistribute super."hxt-binary"; + "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-extras" = dontDistribute super."hxt-extras"; + "hxt-filter" = dontDistribute super."hxt-filter"; + "hxt-xpath" = dontDistribute super."hxt-xpath"; + "hxt-xslt" = dontDistribute super."hxt-xslt"; + "hxthelper" = dontDistribute super."hxthelper"; + "hxweb" = dontDistribute super."hxweb"; + "hyahtzee" = dontDistribute super."hyahtzee"; + "hyakko" = dontDistribute super."hyakko"; + "hybrid" = dontDistribute super."hybrid"; + "hydra-hs" = dontDistribute super."hydra-hs"; + "hydra-print" = dontDistribute super."hydra-print"; + "hydrogen" = dontDistribute super."hydrogen"; + "hydrogen-cli" = dontDistribute super."hydrogen-cli"; + "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args"; + "hydrogen-data" = dontDistribute super."hydrogen-data"; + "hydrogen-multimap" = dontDistribute super."hydrogen-multimap"; + "hydrogen-parsing" = dontDistribute super."hydrogen-parsing"; + "hydrogen-prelude" = dontDistribute super."hydrogen-prelude"; + "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec"; + "hydrogen-syntax" = dontDistribute super."hydrogen-syntax"; + "hydrogen-util" = dontDistribute super."hydrogen-util"; + "hydrogen-version" = dontDistribute super."hydrogen-version"; + "hyena" = dontDistribute super."hyena"; + "hylide" = dontDistribute super."hylide"; + "hylogen" = dontDistribute super."hylogen"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identicon" = dontDistribute super."identicon"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = doDistribute super."idris_0_11_2"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_7"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "ilist" = dontDistribute super."ilist"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "impossible" = dontDistribute super."impossible"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentation-core" = dontDistribute super."indentation-core"; + "indentation-parsec" = dontDistribute super."indentation-parsec"; + "indentation-trifecta" = dontDistribute super."indentation-trifecta"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; + "inline-r" = doDistribute super."inline-r_0_8_0_1"; + "inquire" = dontDistribute super."inquire"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instance-control" = dontDistribute super."instance-control"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "integer-simple" = dontDistribute super."integer-simple"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "intero" = dontDistribute super."intero"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "invertible" = dontDistribute super."invertible"; + "invertible-syntax" = dontDistribute super."invertible-syntax"; + "io-capture" = dontDistribute super."io-capture"; + "io-reactive" = dontDistribute super."io-reactive"; + "io-streams-http" = dontDistribute super."io-streams-http"; + "io-throttle" = dontDistribute super."io-throttle"; + "ioctl" = dontDistribute super."ioctl"; + "ioref-stable" = dontDistribute super."ioref-stable"; + "iothread" = dontDistribute super."iothread"; + "iotransaction" = dontDistribute super."iotransaction"; + "ip" = dontDistribute super."ip"; + "ip-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = doDistribute super."irc-client_0_3_0_0"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-conduit" = doDistribute super."irc-conduit_0_1_2_0"; + "irc-core" = dontDistribute super."irc-core"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; + "itanium-abi" = dontDistribute super."itanium-abi"; + "iter-stats" = dontDistribute super."iter-stats"; + "iterIO" = dontDistribute super."iterIO"; + "iteratee" = dontDistribute super."iteratee"; + "iteratee-compress" = dontDistribute super."iteratee-compress"; + "iteratee-mtl" = dontDistribute super."iteratee-mtl"; + "iteratee-parsec" = dontDistribute super."iteratee-parsec"; + "iteratee-stm" = dontDistribute super."iteratee-stm"; + "iterio-server" = dontDistribute super."iterio-server"; + "ivar-simple" = dontDistribute super."ivar-simple"; + "ivor" = dontDistribute super."ivor"; + "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; + "ivory-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; + "ivory-examples" = dontDistribute super."ivory-examples"; + "ivory-hw" = dontDistribute super."ivory-hw"; + "ivory-opts" = dontDistribute super."ivory-opts"; + "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; + "ivory-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-poker" = dontDistribute super."java-poker"; + "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "js-jquery" = doDistribute super."js-jquery_1_12_4"; + "jsaddle" = doDistribute super."jsaddle_0_3_0_3"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; + "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-pointer" = dontDistribute super."json-pointer"; + "json-pointer-aeson" = dontDistribute super."json-pointer-aeson"; + "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; + "kangaroo" = dontDistribute super."kangaroo"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katt" = dontDistribute super."katt"; + "kazura-queue" = dontDistribute super."kazura-queue"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "khph" = dontDistribute super."khph"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = dontDistribute super."lambdabot"; + "lambdabot-core" = dontDistribute super."lambdabot-core"; + "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins"; + "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins"; + "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins"; + "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins"; + "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins"; + "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins"; + "lambdabot-trusted" = dontDistribute super."lambdabot-trusted"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "lambdaya-bus" = dontDistribute super."lambdaya-bus"; + "lambdiff" = dontDistribute super."lambdiff"; + "lame-tester" = dontDistribute super."lame-tester"; + "language-asn1" = dontDistribute super."language-asn1"; + "language-bash" = dontDistribute super."language-bash"; + "language-boogie" = dontDistribute super."language-boogie"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dart" = dontDistribute super."language-dart"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = doDistribute super."language-thrift_0_8_0_1"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazy-search" = dontDistribute super."lazy-search"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "ld-intervals" = dontDistribute super."ld-intervals"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leancheck" = dontDistribute super."leancheck"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "legion" = dontDistribute super."legion"; + "leksah" = dontDistribute super."leksah"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; + "lens-family-th" = doDistribute super."lens-family-th_0_4_1_0"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxls" = dontDistribute super."libxls"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; + "located-base" = dontDistribute super."located-base"; + "located-monad-logger" = dontDistribute super."located-monad-logger"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; + "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"; + "ltext" = doDistribute super."ltext_0_0_2_1"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; + "ltl" = dontDistribute super."ltl"; + "lua-bc" = dontDistribute super."lua-bc"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_6_0_1"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; + "luka" = dontDistribute super."luka"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; + "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_2_1"; + "mandulia" = dontDistribute super."mandulia"; + "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; + "mappy" = dontDistribute super."mappy"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown2svg" = dontDistribute super."markdown2svg"; + "marked-pretty" = dontDistribute super."marked-pretty"; + "markov" = dontDistribute super."markov"; + "markov-chain" = dontDistribute super."markov-chain"; + "markov-processes" = dontDistribute super."markov-processes"; + "markup-preview" = dontDistribute super."markup-preview"; + "marmalade-upload" = dontDistribute super."marmalade-upload"; + "marquise" = dontDistribute super."marquise"; + "marxup" = dontDistribute super."marxup"; + "masakazu-bot" = dontDistribute super."masakazu-bot"; + "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; + "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_7_0"; + "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"; + "mcm" = dontDistribute super."mcm"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mdp" = dontDistribute super."mdp"; + "means" = dontDistribute super."means"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_4_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "mellon-core" = dontDistribute super."mellon-core"; + "mellon-gpio" = dontDistribute super."mellon-gpio"; + "mellon-web" = dontDistribute super."mellon-web"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memscript" = dontDistribute super."memscript"; + "merge-bash-history" = dontDistribute super."merge-bash-history"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens-each" = dontDistribute super."microlens-each"; + "micrologger" = dontDistribute super."micrologger"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "mnist-idx" = dontDistribute super."mnist-idx"; + "moan" = dontDistribute super."moan"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "mohws" = dontDistribute super."mohws"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-hash" = dontDistribute super."monad-hash"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; + "monad-log" = dontDistribute super."monad-log"; + "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-stm" = dontDistribute super."monad-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-timing" = dontDistribute super."monad-timing"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadfibre" = dontDistribute super."monadfibre"; + "monadiccp" = dontDistribute super."monadiccp"; + "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; + "monadio-unwrappable" = dontDistribute super."monadio-unwrappable"; + "monadlist" = dontDistribute super."monadlist"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; + "mongoDB" = doDistribute super."mongoDB_2_0_10"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_10_2"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-subclasses" = doDistribute super."monoid-subclasses_0_4_2"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidal-containers" = doDistribute super."monoidal-containers_0_1_2_5"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "morph" = dontDistribute super."morph"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "mueval" = dontDistribute super."mueval"; + "mulang" = dontDistribute super."mulang"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multiaddr" = dontDistribute super."multiaddr"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mywatch" = dontDistribute super."mywatch"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "nanovg" = dontDistribute super."nanovg"; + "nanq" = dontDistribute super."nanq"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = doDistribute super."nested-routes_7_0_0"; + "nested-sequence" = dontDistribute super."nested-sequence"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-hans" = dontDistribute super."network-hans"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "neural" = dontDistribute super."neural"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "ngx-export" = dontDistribute super."ngx-export"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nist-beacon" = dontDistribute super."nist-beacon"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "nullpipe" = dontDistribute super."nullpipe"; + "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-ranges" = dontDistribute super."numeric-ranges"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype" = dontDistribute super."numtype"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oanda-rest-api" = dontDistribute super."oanda-rest-api"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octane" = doDistribute super."octane_0_4_24"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = dontDistribute super."oeis"; + "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = doDistribute super."once_0_1_0_0"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "opaleye" = doDistribute super."opaleye_0_4_2_0"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencog-atomspace" = dontDistribute super."opencog-atomspace"; + "opencv-raw" = dontDistribute super."opencv-raw"; + "opendatatable" = dontDistribute super."opendatatable"; + "openexchangerates" = dontDistribute super."openexchangerates"; + "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; + "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator"; + "opengles" = dontDistribute super."opengles"; + "openid" = dontDistribute super."openid"; + "openpgp" = dontDistribute super."openpgp"; + "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; + "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; + "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "openssh-github-keys" = dontDistribute super."openssh-github-keys"; + "openssl-createkey" = dontDistribute super."openssl-createkey"; + "opentheory" = dontDistribute super."opentheory"; + "opentheory-bits" = dontDistribute super."opentheory-bits"; + "opentheory-byte" = dontDistribute super."opentheory-byte"; + "opentheory-char" = dontDistribute super."opentheory-char"; + "opentheory-divides" = dontDistribute super."opentheory-divides"; + "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci"; + "opentheory-parser" = dontDistribute super."opentheory-parser"; + "opentheory-prime" = dontDistribute super."opentheory-prime"; + "opentheory-primitive" = dontDistribute super."opentheory-primitive"; + "opentheory-probability" = dontDistribute super."opentheory-probability"; + "opentheory-stream" = dontDistribute super."opentheory-stream"; + "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; + "operational-extra" = dontDistribute super."operational-extra"; + "opml" = dontDistribute super."opml"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "option" = dontDistribute super."option"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "optparse-text" = dontDistribute super."optparse-text"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistic-tree" = dontDistribute super."order-statistic-tree"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "oscpacking" = dontDistribute super."oscpacking"; + "osm-conduit" = dontDistribute super."osm-conduit"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overloaded-records" = dontDistribute super."overloaded-records"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9_1_1"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_1"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parseerror-eq" = dontDistribute super."parseerror-eq"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; + "partial" = dontDistribute super."partial"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistent" = doDistribute super."persistent_2_2_4_1"; + "persistent-audit" = dontDistribute super."persistent-audit"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_4"; + "persistent-mysql" = doDistribute super."persistent-mysql_2_3_0_2"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_2"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2_1"; + "persistent-template" = doDistribute super."persistent-template_2_1_8_1"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; + "phone-metadata" = dontDistribute super."phone-metadata"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_1"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-bzip" = dontDistribute super."pipes-bzip"; + "pipes-cacophony" = doDistribute super."pipes-cacophony_0_2_1"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-random" = dontDistribute super."pipes-random"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; + "pointed" = doDistribute super."pointed_4_2_0_2"; + "pointfree" = dontDistribute super."pointfree"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "poly-control" = dontDistribute super."poly-control"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynom" = dontDistribute super."polynom"; + "polynomial" = dontDistribute super."polynomial"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "pomodoro" = dontDistribute super."pomodoro"; + "ponder" = dontDistribute super."ponder"; + "pong-server" = dontDistribute super."pong-server"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple-bind" = dontDistribute super."postgresql-simple-bind"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue" = dontDistribute super."pqueue"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude2010" = dontDistribute super."prelude2010"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primitive-simd" = dontDistribute super."primitive-simd"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "pringletons" = dontDistribute super."pringletons"; + "print-debugger" = dontDistribute super."print-debugger"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-extras" = doDistribute super."process-extras_0_3_3_8"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "proto-lens" = dontDistribute super."proto-lens"; + "proto-lens-arbitrary" = dontDistribute super."proto-lens-arbitrary"; + "proto-lens-combinators" = dontDistribute super."proto-lens-combinators"; + "proto-lens-optparse" = dontDistribute super."proto-lens-optparse"; + "proto-lens-protoc" = dontDistribute super."proto-lens-protoc"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_2_0"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_2_0"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = dontDistribute super."psc-ide"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20160522"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse" = dontDistribute super."pulse"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript" = doDistribute super."purescript_0_8_5_0"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pusher-http-haskell" = doDistribute super."pusher-http-haskell_0_3_0_2"; + "pusher-ws" = dontDistribute super."pusher-ws"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "quantum-random" = dontDistribute super."quantum-random"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickbooks" = dontDistribute super."quickbooks"; + "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; + "quiver-http" = dontDistribute super."quiver-http"; + "quiver-instances" = dontDistribute super."quiver-instances"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; + "quiver-sort" = dontDistribute super."quiver-sort"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "raaz" = dontDistribute super."raaz"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow" = doDistribute super."rainbow_0_28_0_2"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_8"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rapid" = dontDistribute super."rapid"; + "rascal" = dontDistribute super."rascal"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratel" = doDistribute super."ratel_0_1_3"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; + "reaction-logic" = dontDistribute super."reaction-logic"; + "reactive" = dontDistribute super."reactive"; + "reactive-bacon" = dontDistribute super."reactive-bacon"; + "reactive-balsa" = dontDistribute super."reactive-balsa"; + "reactive-banana" = dontDistribute super."reactive-banana"; + "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl"; + "reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2"; + "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny"; + "reactive-banana-wx" = dontDistribute super."reactive-banana-wx"; + "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip"; + "reactive-glut" = dontDistribute super."reactive-glut"; + "reactive-haskell" = dontDistribute super."reactive-haskell"; + "reactive-io" = dontDistribute super."reactive-io"; + "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; + "reactor" = dontDistribute super."reactor"; + "read-bounded" = dontDistribute super."read-bounded"; + "readline-statevar" = dontDistribute super."readline-statevar"; + "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; + "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; + "reasonable-lens" = dontDistribute super."reasonable-lens"; + "reasonable-operational" = dontDistribute super."reasonable-operational"; + "rebase" = dontDistribute super."rebase"; + "recaptcha" = dontDistribute super."recaptcha"; + "record" = dontDistribute super."record"; + "record-aeson" = dontDistribute super."record-aeson"; + "record-gl" = dontDistribute super."record-gl"; + "record-preprocessor" = dontDistribute super."record-preprocessor"; + "record-syntax" = dontDistribute super."record-syntax"; + "records" = dontDistribute super."records"; + "records-th" = dontDistribute super."records-th"; + "recursive-line-count" = dontDistribute super."recursive-line-count"; + "redHandlers" = dontDistribute super."redHandlers"; + "reddit" = dontDistribute super."reddit"; + "redis" = dontDistribute super."redis"; + "redis-hs" = dontDistribute super."redis-hs"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-colonnade" = dontDistribute super."reflex-dom-colonnade"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-jsx" = dontDistribute super."reflex-jsx"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; + "regex-xmlschema" = dontDistribute super."regex-xmlschema"; + "regexchar" = dontDistribute super."regexchar"; + "regexdot" = dontDistribute super."regexdot"; + "regexp-tries" = dontDistribute super."regexp-tries"; + "regexpr" = dontDistribute super."regexpr"; + "regexpr-symbolic" = dontDistribute super."regexpr-symbolic"; + "regexqq" = dontDistribute super."regexqq"; + "regional-pointers" = dontDistribute super."regional-pointers"; + "regions" = dontDistribute super."regions"; + "regions-monadsfd" = dontDistribute super."regions-monadsfd"; + "regions-monadstf" = dontDistribute super."regions-monadstf"; + "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remote-json" = dontDistribute super."remote-json"; + "remote-json-client" = dontDistribute super."remote-json-client"; + "remote-json-server" = dontDistribute super."remote-json-server"; + "remote-monad" = dontDistribute super."remote-monad"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-example" = dontDistribute super."rest-example"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5"; + "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rison" = dontDistribute super."rison"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trie" = dontDistribute super."rose-trie"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "roundRobin" = dontDistribute super."roundRobin"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rts-loader" = dontDistribute super."rts-loader"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "safe-access" = dontDistribute super."safe-access"; + "safe-exceptions" = dontDistribute super."safe-exceptions"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandi" = doDistribute super."sandi_0_3_6"; + "sandlib" = dontDistribute super."sandlib"; + "sarasvati" = dontDistribute super."sarasvati"; + "sarsi" = dontDistribute super."sarsi"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; + "sbv" = doDistribute super."sbv_5_11"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_8"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; + "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"; + "secd" = dontDistribute super."secd"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups" = doDistribute super."semigroups_0_18_1"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; + "sensenet" = dontDistribute super."sensenet"; + "sentence-jp" = dontDistribute super."sentence-jp"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serpentine" = dontDistribute super."serpentine"; + "serv" = dontDistribute super."serv"; + "serv-wai" = dontDistribute super."serv-wai"; + "servant-aeson-specs" = dontDistribute super."servant-aeson-specs"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; + "servant-csharp" = dontDistribute super."servant-csharp"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-purescript" = dontDistribute super."servant-purescript"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; + "servant-response" = dontDistribute super."servant-response"; + "servant-router" = dontDistribute super."servant-router"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-subscriber" = dontDistribute super."servant-subscriber"; + "servant-swagger" = doDistribute super."servant-swagger_1_0_3"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-language-c" = doDistribute super."shake-language-c_0_9_1"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-sass" = dontDistribute super."shakespeare-sass"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; + "shivers-cfg" = dontDistribute super."shivers-cfg"; + "shoap" = dontDistribute super."shoap"; + "shortcircuit" = dontDistribute super."shortcircuit"; + "shorten-strings" = dontDistribute super."shorten-strings"; + "show" = dontDistribute super."show"; + "show-type" = dontDistribute super."show-type"; + "showdown" = dontDistribute super."showdown"; + "shpider" = dontDistribute super."shpider"; + "shplit" = dontDistribute super."shplit"; + "shqq" = dontDistribute super."shqq"; + "shuffle" = dontDistribute super."shuffle"; + "sieve" = dontDistribute super."sieve"; + "sifflet" = dontDistribute super."sifflet"; + "sifflet-lib" = dontDistribute super."sifflet-lib"; + "sign" = dontDistribute super."sign"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "simple-actors" = dontDistribute super."simple-actors"; + "simple-atom" = dontDistribute super."simple-atom"; + "simple-bluetooth" = dontDistribute super."simple-bluetooth"; + "simple-c-value" = dontDistribute super."simple-c-value"; + "simple-conduit" = dontDistribute super."simple-conduit"; + "simple-config" = dontDistribute super."simple-config"; + "simple-css" = dontDistribute super."simple-css"; + "simple-eval" = dontDistribute super."simple-eval"; + "simple-firewire" = dontDistribute super."simple-firewire"; + "simple-form" = dontDistribute super."simple-form"; + "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm"; + "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr"; + "simple-get-opt" = dontDistribute super."simple-get-opt"; + "simple-index" = dontDistribute super."simple-index"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-tar" = dontDistribute super."simple-tar"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_2_0_1"; + "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "size-based" = dontDistribute super."size-based"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "sleep" = dontDistribute super."sleep"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smsaero" = dontDistribute super."smsaero"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake" = dontDistribute super."snake"; + "snake-game" = dontDistribute super."snake-game"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-routes" = dontDistribute super."snap-routes"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "socketson" = dontDistribute super."socketson"; + "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; + "solr" = dontDistribute super."solr"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorted-list" = doDistribute super."sorted-list_0_1_6_1"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; + "sproxy-web" = dontDistribute super."sproxy-web"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "sscript" = dontDistribute super."sscript"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; + "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_14_0"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-record" = dontDistribute super."state-record"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stgi" = dontDistribute super."stgi"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_8_0"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "store" = dontDistribute super."store"; + "store-core" = dontDistribute super."store-core"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-http" = dontDistribute super."stratux-http"; + "stratux-types" = dontDistribute super."stratux-types"; + "stratux-websockets" = dontDistribute super."stratux-websockets"; + "stream" = dontDistribute super."stream"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-eversion" = dontDistribute super."streaming-eversion"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "streams" = doDistribute super."streams_3_2_1"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-data" = dontDistribute super."strict-data"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-convert" = dontDistribute super."string-convert"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-core" = doDistribute super."stripe-core_2_0_3"; + "stripe-haskell" = doDistribute super."stripe-haskell_2_0_3"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_3"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structural-traversal" = dontDistribute super."structural-traversal"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "subwordgraph" = dontDistribute super."subwordgraph"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; + "suspend" = dontDistribute super."suspend"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = doDistribute super."swagger2_2_0_2"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "symengine" = dontDistribute super."symengine"; + "symengine-hs" = dontDistribute super."symengine-hs"; + "sync" = dontDistribute super."sync"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; + "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; + "table-tennis" = dontDistribute super."table-tennis"; + "tableaux" = dontDistribute super."tableaux"; + "tables" = dontDistribute super."tables"; + "tablestorage" = dontDistribute super."tablestorage"; + "tabloid" = dontDistribute super."tabloid"; + "taffybar" = dontDistribute super."taffybar"; + "tag-bits" = dontDistribute super."tag-bits"; + "tag-stream" = dontDistribute super."tag-stream"; + "tagchup" = dontDistribute super."tagchup"; + "tagged-exception-core" = dontDistribute super."tagged-exception-core"; + "tagged-list" = dontDistribute super."tagged-list"; + "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; + "tagged-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; + "tak" = dontDistribute super."tak"; + "tak-ai" = dontDistribute super."tak-ai"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; + "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "teleport" = dontDistribute super."teleport"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempo" = dontDistribute super."tempo"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terntup" = dontDistribute super."terntup"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-fixture" = dontDistribute super."test-fixture"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "testPkg" = dontDistribute super."testPkg"; + "testbench" = dontDistribute super."testbench"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texrunner" = dontDistribute super."texrunner"; + "text-all" = dontDistribute super."text-all"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-conversions" = dontDistribute super."text-conversions"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-lips" = dontDistribute super."text-lips"; + "text-loc" = dontDistribute super."text-loc"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show" = doDistribute super."text-show_2_1_2"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "textual" = dontDistribute super."textual"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-desugar" = doDistribute super."th-desugar_1_5_5"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = doDistribute super."th-lift-instances_0_1_9"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "these" = doDistribute super."these_0_6_2_1"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = doDistribute super."tidal_0_7_1"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-serial" = dontDistribute super."tidal-serial"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; + "time-extras" = dontDistribute super."time-extras"; + "time-exts" = dontDistribute super."time-exts"; + "time-http" = dontDistribute super."time-http"; + "time-interval" = dontDistribute super."time-interval"; + "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; + "time-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timelens" = dontDistribute super."timelens"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; + "timelike-time" = dontDistribute super."timelike-time"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "tiphys" = dontDistribute super."tiphys"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls-extra" = dontDistribute super."tls-extra"; + "tmpl" = dontDistribute super."tmpl"; + "tn" = dontDistribute super."tn"; + "tnet" = dontDistribute super."tnet"; + "to-haskell" = dontDistribute super."to-haskell"; + "to-string-class" = dontDistribute super."to-string-class"; + "to-string-instances" = dontDistribute super."to-string-instances"; + "todos" = dontDistribute super."todos"; + "tofromxml" = dontDistribute super."tofromxml"; + "toilet" = dontDistribute super."toilet"; + "tokenify" = dontDistribute super."tokenify"; + "tokenize" = dontDistribute super."tokenize"; + "toktok" = dontDistribute super."toktok"; + "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell"; + "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell"; + "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal"; + "toml" = dontDistribute super."toml"; + "toolshed" = dontDistribute super."toolshed"; + "topkata" = dontDistribute super."topkata"; + "torch" = dontDistribute super."torch"; + "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; + "total-map" = dontDistribute super."total-map"; + "total-maps" = dontDistribute super."total-maps"; + "touched" = dontDistribute super."touched"; + "toysolver" = dontDistribute super."toysolver"; + "tpdb" = dontDistribute super."tpdb"; + "trace" = dontDistribute super."trace"; + "trace-call" = dontDistribute super."trace-call"; + "trace-function-call" = dontDistribute super."trace-function-call"; + "traced" = dontDistribute super."traced"; + "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; + "tracker" = dontDistribute super."tracker"; + "traildb" = dontDistribute super."traildb"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "transient-universe" = dontDistribute super."transient-universe"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslib" = dontDistribute super."tslib"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turingMachine" = dontDistribute super."turingMachine"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "tweak" = dontDistribute super."tweak"; + "twee" = dontDistribute super."twee"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cache" = dontDistribute super."type-cache"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-list" = doDistribute super."type-list_0_3_0_4"; + "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "uAgda" = dontDistribute super."uAgda"; + "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; + "uberlast" = dontDistribute super."uberlast"; + "uconv" = dontDistribute super."uconv"; + "udbus" = dontDistribute super."udbus"; + "udbus-model" = dontDistribute super."udbus-model"; + "udcode" = dontDistribute super."udcode"; + "udev" = dontDistribute super."udev"; + "uhc-light" = dontDistribute super."uhc-light"; + "uhc-util" = dontDistribute super."uhc-util"; + "uhexdump" = dontDistribute super."uhexdump"; + "uhttpc" = dontDistribute super."uhttpc"; + "ui-command" = dontDistribute super."ui-command"; + "uid" = dontDistribute super."uid"; + "una" = dontDistribute super."una"; + "unagi-chan" = dontDistribute super."unagi-chan"; + "unagi-streams" = dontDistribute super."unagi-streams"; + "unamb" = dontDistribute super."unamb"; + "unamb-custom" = dontDistribute super."unamb-custom"; + "unbound" = dontDistribute super."unbound"; + "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; + "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; + "unfoldable" = dontDistribute super."unfoldable"; + "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-show" = dontDistribute super."unicode-show"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicode-transforms" = dontDistribute super."unicode-transforms"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = doDistribute super."union_0_1_1_0"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "unit-constraint" = dontDistribute super."unit-constraint"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe-th" = dontDistribute super."universe-th"; + "unix-compat" = doDistribute super."unix-compat_0_4_1_4"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "unused" = dontDistribute super."unused"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-sized" = dontDistribute super."vector-sized"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "vectortiles" = dontDistribute super."vectortiles"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = doDistribute super."versions_2_0_0"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-operational" = dontDistribute super."vinyl-operational"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty" = doDistribute super."vty_5_5_0"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "vulkan" = dontDistribute super."vulkan"; + "wacom-daemon" = dontDistribute super."wacom-daemon"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_7"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-make-assets" = dontDistribute super."wai-make-assets"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = doDistribute super."wai-middleware-verbs_0_2_0"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-inv-route" = dontDistribute super."web-inv-route"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "webapi" = dontDistribute super."webapi"; + "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = doDistribute super."webkitgtk3_0_14_1_1"; + "webkitgtk3-javascriptcore" = doDistribute super."webkitgtk3-javascriptcore_0_13_1_2"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "werewolf" = doDistribute super."werewolf_1_0_2_2"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikicfp-scraper" = dontDistribute super."wikicfp-scraper"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; + "wiring" = dontDistribute super."wiring"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word-vector" = dontDistribute super."word-vector"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsdl" = dontDistribute super."wsdl"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = doDistribute super."wuss_1_0_4"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_2_2"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit-decode" = dontDistribute super."xml-conduit-decode"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xpathdsv" = dontDistribute super."xpathdsv"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml-union" = dontDistribute super."yaml-union"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yandex-translate" = dontDistribute super."yandex-translate"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_10"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-ip" = dontDistribute super."yesod-ip"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-mangopay" = dontDistribute super."yesod-mangopay"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yocto" = dontDistribute super."yocto"; + "yoctoparsec" = dontDistribute super."yoctoparsec"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "z3-encoding" = dontDistribute super."z3-encoding"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index de8865e3282..01475c0bf26 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -2143,7 +2143,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "BlogLiterately" = callPackage + "BlogLiterately_0_8_3_1" = callPackage ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs , containers, data-default, directory, filepath, HaXml, haxr , highlighting-kate, hscolour, HTTP, lens, mtl, pandoc @@ -2169,6 +2169,32 @@ self: { 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.4"; + sha256 = "1eb44830043ba01ddd186498d594a8b01c1ced908f2ea2dc6aa6085e2c91dd7d"; + 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 ({ mkDerivation, base, BlogLiterately, containers, diagrams-builder , diagrams-cairo, diagrams-lib, directory, filepath, pandoc, safe @@ -3948,6 +3974,17 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "Concurrent-Cache" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "Concurrent-Cache"; + version = "0.2.0.0"; + sha256 = "df1d1540e28338609f86baef867704c4df1a2dfb8cf46881ec9227d3433fae3b"; + libraryHaskellDepends = [ base ]; + description = "A Cached variable for IO functions"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "ConcurrentUtils" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers , crypto-random, cryptohash, list-extras, MonadRandom, monads-tf @@ -5997,8 +6034,8 @@ self: { }: mkDerivation { pname = "Euterpea"; - version = "2.0.1"; - sha256 = "904e085a15789161515324391882c6a04469cb652c3fcfa9e4b6aa640b327333"; + version = "2.0.2"; + sha256 = "9b7dfed82cceae3f1213c1dffee46d17a4d729626ad873175984567abab44db4"; libraryHaskellDepends = [ array arrows base bytestring containers deepseq ghc-prim HCodecs heap PortMidi random stm @@ -8678,6 +8715,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) fuse;}; + "HGE2D" = callPackage + ({ mkDerivation, base, GLUT, OpenGL, time }: + mkDerivation { + pname = "HGE2D"; + version = "0.1.6.5"; + sha256 = "072579275b26bc68356e564f6691bf9168548848e5ef759865e629b7f684d326"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base GLUT OpenGL time ]; + executableHaskellDepends = [ base ]; + homepage = "https://github.com/I3ck/HGE2D"; + description = "2D game engine written in Haskell"; + license = stdenv.lib.licenses.mit; + }) {}; + "HGL" = callPackage ({ mkDerivation, array, base, X11 }: mkDerivation { @@ -16938,8 +16990,8 @@ self: { }: mkDerivation { pname = "Plot-ho-matic"; - version = "0.10.0.0"; - sha256 = "07cadc1eb4e2d0820c508676914e851d324c98eb97e4f37f936860fc3ddd8e80"; + version = "0.10.1.0"; + sha256 = "af1880de4e2bdb5c0bcdd5e532163d15c6fd33b1f01a1d09c8f5ded3dcfa70c5"; libraryHaskellDepends = [ base bytestring cairo cereal Chart Chart-cairo containers data-default-class generic-accessors glib gtk3 lens text time @@ -17482,6 +17534,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "QuickCheck_2_9_1" = callPackage + ({ mkDerivation, base, containers, random, template-haskell + , test-framework, tf-random, transformers + }: + mkDerivation { + pname = "QuickCheck"; + version = "2.9.1"; + sha256 = "f8769cbef895a67f9bd1ac554faa577e6c1fb41e271425880a759009e454d05f"; + libraryHaskellDepends = [ + base containers random template-haskell tf-random transformers + ]; + testHaskellDepends = [ + base containers template-haskell test-framework + ]; + jailbreak = true; + homepage = "https://github.com/nick8325/quickcheck"; + description = "Automatic testing of Haskell programs"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "QuickCheck-GenT" = callPackage ({ mkDerivation, base, mtl, QuickCheck, random }: mkDerivation { @@ -18792,6 +18865,7 @@ self: { data-default-class diagrams-core diagrams-lib directory parsec split text tuple vector xml ]; + jailbreak = true; description = "Fonts from the SVG-Font format"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -20114,7 +20188,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "Strafunski-StrategyLib" = callPackage + "Strafunski-StrategyLib_5_0_0_8" = callPackage ({ mkDerivation, base, directory, mtl, syb, transformers }: mkDerivation { pname = "Strafunski-StrategyLib"; @@ -20124,6 +20198,18 @@ self: { jailbreak = true; description = "Library for strategic programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "Strafunski-StrategyLib" = callPackage + ({ mkDerivation, base, directory, mtl, syb, transformers }: + mkDerivation { + pname = "Strafunski-StrategyLib"; + version = "5.0.0.9"; + sha256 = "c8e464538cd27c4f2636eb25dcd1a1ef1df680f89600219baa2ca21ce2a98e1d"; + libraryHaskellDepends = [ base directory mtl syb transformers ]; + description = "Library for strategic programming"; + license = stdenv.lib.licenses.bsd3; }) {}; "StrappedTemplates" = callPackage @@ -24148,6 +24234,7 @@ self: { version = "0.2.0"; sha256 = "218f0271298f9a42aad50c10cc042388c62d1619624b750f0b665be4f068c4cd"; libraryHaskellDepends = [ base template-haskell type-level ]; + jailbreak = true; homepage = "http://inmachina.net/~jwlato/haskell/"; description = "Self-optimizing tuple types"; license = stdenv.lib.licenses.bsd3; @@ -25527,10 +25614,9 @@ self: { ({ mkDerivation, aeson, base }: mkDerivation { pname = "aeson-yak"; - version = "0.1.1"; - sha256 = "b71317e0a87bbd84d6ec407a307299201070a10e3b2cf9d28c4afb5cf8b0dad2"; + version = "0.1.1.1"; + sha256 = "68eaed01e8d928870dc8c3f3530a3c77aaf8ef1bec86928f2382b9e0af81a260"; libraryHaskellDepends = [ aeson base ]; - jailbreak = true; homepage = "https://github.com/tejon/aeson-yak"; description = "Handle JSON that may or may not be a list, or exist"; license = stdenv.lib.licenses.mit; @@ -26054,6 +26140,7 @@ self: { aivika aivika-experiment array base Chart colour containers data-default-class filepath lens mtl split ]; + jailbreak = true; homepage = "http://github.com/dsorokin/aivika-experiment-chart"; description = "Simulation experiments with charting for the Aivika library"; license = stdenv.lib.licenses.bsd3; @@ -38345,7 +38432,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "atom-conduit" = callPackage + "atom-conduit_0_3_1_1" = callPackage ({ mkDerivation, base, conduit, conduit-parse, data-default , exceptions, foldl, hlint, lens-simple, mono-traversable, parsers , quickcheck-instances, resourcet, tasty, tasty-hunit @@ -38356,6 +38443,36 @@ self: { pname = "atom-conduit"; version = "0.3.1.1"; sha256 = "d0603a5a726fade01a9fe6c5859d81c6f53d8770dc0db8b889e2717e63a3d2b3"; + revision = "1"; + editedCabalFile = "8ebc45eae1c2408eb475b62923c8801b07abe999d107f3d9b22ec22c2e8c1dad"; + libraryHaskellDepends = [ + base conduit conduit-parse exceptions foldl lens-simple + mono-traversable parsers text time timerep uri-bytestring + xml-conduit xml-conduit-parse xml-types + ]; + testHaskellDepends = [ + base conduit conduit-parse data-default exceptions hlint + lens-simple mono-traversable parsers quickcheck-instances resourcet + tasty tasty-hunit tasty-quickcheck text time uri-bytestring + xml-conduit xml-conduit-parse xml-types + ]; + jailbreak = true; + description = "Streaming parser/renderer for the Atom 1.0 standard (RFC 4287)."; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "atom-conduit" = callPackage + ({ mkDerivation, base, conduit, conduit-parse, data-default + , exceptions, foldl, hlint, lens-simple, mono-traversable, parsers + , quickcheck-instances, resourcet, tasty, tasty-hunit + , tasty-quickcheck, text, time, timerep, uri-bytestring + , xml-conduit, xml-conduit-parse, xml-types + }: + mkDerivation { + pname = "atom-conduit"; + version = "0.3.1.2"; + sha256 = "ab469b789cd81a5dab366c367a5b86a073e7cfc8fbb1a978d3107441795f7a22"; libraryHaskellDepends = [ base conduit conduit-parse exceptions foldl lens-simple mono-traversable parsers text time timerep uri-bytestring @@ -40141,6 +40258,7 @@ self: { mtl QuickCheck quickcheck-instances resourcet tagged tasty tasty-quickcheck text time transformers transformers-base ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/aristidb/aws"; description = "Amazon Web Services (AWS) for Haskell"; @@ -43482,15 +43600,15 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "binary_0_8_4_0" = callPackage + "binary_0_8_4_1" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, containers , directory, filepath, HUnit, QuickCheck, random, test-framework , test-framework-quickcheck2 }: mkDerivation { pname = "binary"; - version = "0.8.4.0"; - sha256 = "d7a672366741152365a2c1e67525dc08bf606a4a8cae06f58c7f51a2e43f9018"; + version = "0.8.4.1"; + sha256 = "8d13c700fe96c84644a2af37003f488668fe9cd1f8e5b316fc929de26ce7e7ba"; libraryHaskellDepends = [ array base bytestring containers ]; testHaskellDepends = [ array base bytestring Cabal containers directory filepath HUnit @@ -45595,18 +45713,19 @@ self: { "bitcoin-payment-channel" = callPackage ({ mkDerivation, aeson, base, base16-bytestring, base58string - , base64-bytestring, binary, bytestring, cereal, haskoin-core - , hexstring, QuickCheck, scientific, text, time + , base64-bytestring, binary, bytestring, cereal, errors + , haskoin-core, hexstring, QuickCheck, scientific, text, time }: mkDerivation { pname = "bitcoin-payment-channel"; - version = "0.1.1.3"; - sha256 = "3d597ad214a159e3ddfac79d169f06463bafa54428c2e2dfcee0236f00126aae"; + version = "0.2.0.0"; + sha256 = "0bfb82323eaf0064990c17cd2e544416c8e8dfe71749b01a86fca51eaa1d6dc1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson base base16-bytestring base58string base64-bytestring binary - bytestring cereal haskoin-core hexstring scientific text time + bytestring cereal errors haskoin-core hexstring scientific text + time ]; executableHaskellDepends = [ aeson base base16-bytestring base58string base64-bytestring binary @@ -46011,18 +46130,19 @@ self: { }) {}; "bitx-bitcoin" = callPackage - ({ mkDerivation, aeson, base, bytestring, directory, doctest, hspec - , http-client, http-client-tls, http-types, microlens, microlens-th - , network, QuickCheck, safe, scientific, split, text, time + ({ mkDerivation, aeson, base, bytestring, directory, doctest + , exceptions, hspec, http-client, http-client-tls, http-types + , microlens, microlens-th, network, QuickCheck, safe, scientific + , split, text, time }: mkDerivation { pname = "bitx-bitcoin"; - version = "0.9.0.0"; - sha256 = "9360e11c943707a18339273346e0d4ce84dd247ea9ca503d2143eb210113cf05"; + version = "0.9.0.1"; + sha256 = "5a0b9076aafd4ad9939891df0251c8bfaed687d12f4bcb21f46e3a5f85ffd332"; libraryHaskellDepends = [ - aeson base bytestring http-client http-client-tls http-types - microlens microlens-th network QuickCheck scientific split text - time + aeson base bytestring exceptions http-client http-client-tls + http-types microlens microlens-th network QuickCheck scientific + split text time ]; testHaskellDepends = [ aeson base bytestring directory doctest hspec http-client @@ -47145,22 +47265,23 @@ self: { }) {}; "bloodhound-amazonka-auth" = callPackage - ({ mkDerivation, amazonka-core, amazonka-elasticsearch, base - , bloodhound, exceptions, http-client, http-types, tasty - , tasty-hunit, time, transformers, uri-bytestring + ({ mkDerivation, aeson, amazonka, amazonka-core + , amazonka-elasticsearch, base, bloodhound, exceptions, http-client + , http-client-tls, http-types, lens, retry, tasty, tasty-hunit + , text, time, transformers, uri-bytestring }: mkDerivation { pname = "bloodhound-amazonka-auth"; - version = "0.1.0.0"; - sha256 = "8a0bff2793fe8493e3d6239b43da5b15c1d31bfec71cad6bac0b20f0fd57c297"; + version = "0.1.1.0"; + sha256 = "cf92a14be0e0d5552f2b00cdb19ab320f93ae612b92589999b674a3984858504"; libraryHaskellDepends = [ amazonka-core amazonka-elasticsearch base bloodhound exceptions http-client http-types time transformers uri-bytestring ]; testHaskellDepends = [ - amazonka-core base http-client tasty tasty-hunit time + aeson amazonka amazonka-core base bloodhound http-client + http-client-tls lens retry tasty tasty-hunit text time ]; - jailbreak = true; homepage = "http://github.com/MichaelXavier/bloodhound-amazonka-auth#readme"; description = "Adds convenient Amazon ElasticSearch Service authentication to Bloodhound"; license = stdenv.lib.licenses.bsd3; @@ -48192,7 +48313,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "broadcast-chan" = callPackage + "broadcast-chan_0_1_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "broadcast-chan"; @@ -48202,6 +48323,19 @@ self: { homepage = "https://github.com/merijn/broadcast-chan"; description = "Broadcast channel type that avoids 0 reader space leaks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "broadcast-chan" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "broadcast-chan"; + version = "0.1.1"; + sha256 = "ad5bd65a301aff6df38c4111f02e73cce3bcfed7bfae6c66c2e70310f1e985f2"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/merijn/broadcast-chan"; + description = "Broadcast channel type that avoids 0 reader space leaks"; + license = stdenv.lib.licenses.bsd3; }) {}; "broccoli" = callPackage @@ -50592,34 +50726,6 @@ self: { }) {}; "cabal-helper" = 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; - }) {}; - - "cabal-helper_0_7_1_0" = callPackage ({ mkDerivation, base, bytestring, Cabal, cabal-install, directory , extra, filepath, ghc-prim, mtl, process, template-haskell , temporary, transformers, unix, utf8-string @@ -50628,8 +50734,8 @@ self: { pname = "cabal-helper"; version = "0.7.1.0"; sha256 = "7c78b875b5f246b8422b641923d2ffe593bf65ce9e99373e19ef8372df8db66f"; - revision = "1"; - editedCabalFile = "1d0a9e90761cbdc1804e396eeb3bf10ae5663f5b3ce637a5f80238b4f04ed5cd"; + revision = "2"; + editedCabalFile = "b84eff37825d78f316e9712e175937b54b35d7c67eed8741a3db160800fbd177"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -50644,11 +50750,9 @@ self: { template-haskell temporary transformers unix utf8-string ]; testToolDepends = [ cabal-install ]; - jailbreak = true; doCheck = false; description = "Simple interface to some of Cabal's configuration state used by ghc-mod"; license = stdenv.lib.licenses.agpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-info" = callPackage @@ -52507,28 +52611,37 @@ self: { }) {}; "camfort" = callPackage - ({ mkDerivation, alex, array, base, comonad, containers, directory - , fclabels, generic-deriving, happy, haskell-src, hmatrix - , language-fortran, matrix, mtl, syb, syz, template-haskell, text - , transformers, uniplate, vector + ({ mkDerivation, alex, array, base, bytestring, comonad, containers + , directory, fclabels, fgl, filepath, fortran-src, generic-deriving + , GenericPretty, ghc-prim, happy, haskell-src, hmatrix, hspec + , language-fortran, matrix, mtl, QuickCheck, regex-base, regex-pcre + , syb, syz, template-haskell, text, transformers, uniplate, vector }: mkDerivation { pname = "camfort"; - version = "0.700"; - sha256 = "f5978dfbc1af77fc7fb0ff0190fae5d58f797301acbec7115ce66ab146913151"; + version = "0.800"; + sha256 = "353634acb37e99cda4f747fc61309583c9c556b9eec579db79dd089c0202a450"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - array base comonad containers directory fclabels generic-deriving + array base bytestring comonad containers directory fclabels fgl + filepath fortran-src generic-deriving GenericPretty ghc-prim haskell-src hmatrix language-fortran matrix mtl syb syz template-haskell text transformers uniplate vector ]; libraryToolDepends = [ alex happy ]; executableHaskellDepends = [ - array base comonad containers directory fclabels generic-deriving - haskell-src hmatrix language-fortran matrix mtl syb syz - template-haskell text transformers uniplate vector + array base bytestring comonad containers directory fclabels fgl + filepath fortran-src generic-deriving GenericPretty ghc-prim + haskell-src hmatrix language-fortran matrix mtl QuickCheck + regex-base regex-pcre syb syz template-haskell text transformers + uniplate vector ]; + testHaskellDepends = [ + base bytestring containers directory filepath fortran-src hspec mtl + QuickCheck uniplate + ]; + jailbreak = true; description = "CamFort - Cambridge Fortran infrastructure"; license = stdenv.lib.licenses.asl20; hydraPlatforms = [ "x86_64-darwin" ]; @@ -54321,6 +54434,23 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "cereal-io-streams" = callPackage + ({ mkDerivation, base, bytestring, cereal, derive, HUnit + , io-streams, mtl, QuickCheck, tasty, tasty-hunit, tasty-quickcheck + }: + mkDerivation { + pname = "cereal-io-streams"; + version = "0.0.1.0"; + sha256 = "b32bb775ec6f93fcc7246b5903473c893995b45d11f82c29913a20f459e568f1"; + libraryHaskellDepends = [ base bytestring cereal io-streams ]; + testHaskellDepends = [ + base bytestring cereal derive HUnit io-streams mtl QuickCheck tasty + tasty-hunit tasty-quickcheck + ]; + description = "io-streams support for the cereal binary serialization library"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "cereal-plus" = callPackage ({ mkDerivation, array, base, bytestring, cereal, containers , errors, hashable, hashtables, HTF, HUnit, mmorph, mtl, QuickCheck @@ -54347,6 +54477,23 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "cereal-streams" = callPackage + ({ mkDerivation, base, bytestring, cereal, derive, HUnit + , io-streams, mtl, QuickCheck, tasty, tasty-hunit, tasty-quickcheck + }: + mkDerivation { + pname = "cereal-streams"; + version = "0.0.1.0"; + sha256 = "f2f7852ee6a64bfe8d526ee46d178973a58079c8a3f8390f2a367546b4d8b7cc"; + libraryHaskellDepends = [ base bytestring cereal io-streams ]; + testHaskellDepends = [ + base bytestring cereal derive HUnit io-streams mtl QuickCheck tasty + tasty-hunit tasty-quickcheck + ]; + description = "Use cereal to encode/decode io-streams"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "cereal-text" = callPackage ({ mkDerivation, base, cereal, text }: mkDerivation { @@ -54599,20 +54746,20 @@ self: { ({ mkDerivation, ansi-terminal, array, async, base, bytestring , cmdargs, containers, directory, dlist, either, filepath, ghc-prim , mtl, process, regex-base, regex-pcre, regex-posix, safe, split - , stm, stringsearch, transformers, unix-compat - , unordered-containers + , stm, stringsearch, transformers, unicode-show, unix-compat + , unordered-containers, utf8-string }: mkDerivation { pname = "cgrep"; - version = "6.6.15"; - sha256 = "f58a557fecdc7066ec60653e7c902b8baedcf4f44a81f890265374b6dab9affa"; + version = "6.6.16"; + sha256 = "7161e331f409ee95abfab14f720ad300ce4c9bd37a9fae74de6643c0f30b134b"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ ansi-terminal array async base bytestring cmdargs containers directory dlist either filepath ghc-prim mtl process regex-base regex-pcre regex-posix safe split stm stringsearch transformers - unix-compat unordered-containers + unicode-show unix-compat unordered-containers utf8-string ]; homepage = "http://awgn.github.io/cgrep/"; description = "Command line tool"; @@ -56029,14 +56176,13 @@ self: { }: mkDerivation { pname = "clang-pure"; - version = "0.1.0.0"; - sha256 = "7c5cfef49732236bc6d6da95b89087c07447d9bf235c032c16c7e6850a747b08"; + version = "0.1.0.1"; + sha256 = "9beb6dd2d0a21a4057a0372d5fc9da2984ffc455bd24ed3c93c7b4ba7ec20900"; libraryHaskellDepends = [ base bytestring containers contravariant inline-c stm template-haskell vector ]; librarySystemDepends = [ clang ]; - jailbreak = true; description = "Pure C++ code analysis with libclang"; license = stdenv.lib.licenses.asl20; hydraPlatforms = stdenv.lib.platforms.none; @@ -56859,8 +57005,8 @@ self: { pname = "clash-prelude"; version = "0.10.9"; sha256 = "4a96fa9222427df9b515c343d0db6f53441c710141a09a344ee47ab30ebacee1"; - revision = "1"; - editedCabalFile = "60f4e89dd73b84c4798fc7fd7f52d58afd7eb3069b5d41994fb3d43be4eb40f5"; + revision = "2"; + editedCabalFile = "966a6c0c7d74ee6932671fc44d7cd1d809ef6a11523ff5caf4c4a9c13583cb80"; libraryHaskellDepends = [ array base data-default ghc-prim ghc-typelits-extra ghc-typelits-natnormalise integer-gmp lens QuickCheck reflection @@ -58539,7 +58685,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; - "clckwrks" = callPackage + "clckwrks_0_23_16" = callPackage ({ mkDerivation, acid-state, aeson, aeson-qq, attoparsec, base , blaze-html, bytestring, cereal, containers, directory, filepath , happstack-authenticate, happstack-hsp, happstack-jmacro @@ -58567,6 +58713,41 @@ self: { web-routes-happstack web-routes-hsp web-routes-th xss-sanitize ]; librarySystemDepends = [ openssl ]; + jailbreak = true; + homepage = "http://www.clckwrks.com/"; + description = "A secure, reliable content management system (CMS) and blogging platform"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) openssl;}; + + "clckwrks" = callPackage + ({ mkDerivation, acid-state, aeson, aeson-qq, attoparsec, base + , blaze-html, bytestring, cereal, containers, directory, filepath + , happstack-authenticate, happstack-hsp, happstack-jmacro + , happstack-server, happstack-server-tls, hsp, hsx-jmacro, hsx2hs + , ixset, jmacro, lens, mtl, network, network-uri, old-locale + , openssl, process, random, reform, reform-happstack, reform-hsp + , safecopy, stm, text, time, time-locale-compat + , unordered-containers, userid, utf8-string, uuid-orphans + , uuid-types, vector, web-plugins, web-routes, web-routes-happstack + , web-routes-hsp, web-routes-th, xss-sanitize + }: + mkDerivation { + pname = "clckwrks"; + version = "0.23.17"; + sha256 = "ac6134a2b6a54d08aadda1fa2251120fb034238397199c62fc50d980d143b08d"; + libraryHaskellDepends = [ + acid-state aeson aeson-qq attoparsec base blaze-html bytestring + cereal containers directory filepath happstack-authenticate + happstack-hsp happstack-jmacro happstack-server + happstack-server-tls hsp hsx-jmacro hsx2hs ixset jmacro lens mtl + network network-uri old-locale process random reform + reform-happstack reform-hsp safecopy stm text time + time-locale-compat unordered-containers userid utf8-string + uuid-orphans uuid-types vector web-plugins web-routes + web-routes-happstack web-routes-hsp web-routes-th xss-sanitize + ]; + librarySystemDepends = [ openssl ]; homepage = "http://www.clckwrks.com/"; description = "A secure, reliable content management system (CMS) and blogging platform"; license = stdenv.lib.licenses.bsd3; @@ -58979,7 +59160,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clientsession" = callPackage + "clientsession_0_9_1_1" = callPackage ({ mkDerivation, base, base64-bytestring, bytestring, cereal , cipher-aes, containers, cprng-aes, crypto-api, crypto-random , directory, entropy, hspec, HUnit, QuickCheck, setenv, skein @@ -59003,6 +59184,33 @@ self: { homepage = "http://github.com/yesodweb/clientsession/tree/master"; description = "Securely store session data in a client-side cookie"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clientsession" = callPackage + ({ mkDerivation, base, base64-bytestring, bytestring, cereal + , cipher-aes, containers, cprng-aes, crypto-api, crypto-random + , directory, entropy, hspec, HUnit, QuickCheck, setenv, skein + , tagged, transformers + }: + mkDerivation { + pname = "clientsession"; + version = "0.9.1.2"; + sha256 = "5915adc4de26d2a8b03f1a445bac0b0f5d10a5b0380a4eed71b79a20a727d068"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base base64-bytestring bytestring cereal cipher-aes cprng-aes + crypto-api crypto-random directory entropy setenv skein tagged + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base bytestring cereal containers hspec HUnit QuickCheck + transformers + ]; + homepage = "http://github.com/yesodweb/clientsession/tree/master"; + description = "Securely store session data in a client-side cookie"; + license = stdenv.lib.licenses.mit; }) {}; "clifford" = callPackage @@ -64810,7 +65018,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cookie" = callPackage + "cookie_0_4_2" = callPackage ({ mkDerivation, base, blaze-builder, bytestring , data-default-class, deepseq, HUnit, old-locale, QuickCheck, tasty , tasty-hunit, tasty-quickcheck, text, time @@ -64830,6 +65038,29 @@ self: { homepage = "http://github.com/snoyberg/cookie"; description = "HTTP cookie parsing and rendering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cookie" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring + , data-default-class, deepseq, HUnit, old-locale, QuickCheck, tasty + , tasty-hunit, tasty-quickcheck, text, time + }: + mkDerivation { + pname = "cookie"; + version = "0.4.2.1"; + sha256 = "06413091908e20ce154effdcd354d7eea1447380e29a8acdb15c3347512852e4"; + libraryHaskellDepends = [ + base blaze-builder bytestring data-default-class deepseq old-locale + text time + ]; + testHaskellDepends = [ + base blaze-builder bytestring HUnit QuickCheck tasty tasty-hunit + tasty-quickcheck text time + ]; + homepage = "http://github.com/snoyberg/cookie"; + description = "HTTP cookie parsing and rendering"; + license = stdenv.lib.licenses.mit; }) {}; "coordinate" = callPackage @@ -64838,8 +65069,8 @@ self: { }: mkDerivation { pname = "coordinate"; - version = "0.1.1"; - sha256 = "78bf22add331dead9d2fc3ea4c0f626d821462c47bae72be8833282e9455e7ca"; + version = "0.1.2"; + sha256 = "dba23e66c6669344571ee24b7ce65b3817241a4211e608cfb879daa4e5dbf052"; libraryHaskellDepends = [ base lens transformers ]; testHaskellDepends = [ base directory doctest filepath QuickCheck template-haskell @@ -65343,7 +65574,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "courier" = callPackage + "courier_0_1_1_2" = callPackage ({ mkDerivation, async, base, bytestring, cereal, containers , directory, hslogger, HUnit, network, stm, test-framework , test-framework-hunit, text, uuid @@ -65366,6 +65597,32 @@ self: { homepage = "http://github.com/hargettp/courier"; description = "A message-passing library for simplifying network applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "courier" = callPackage + ({ mkDerivation, async, base, bytestring, cereal, containers + , directory, hslogger, HUnit, network, stm, test-framework + , test-framework-hunit, text, uuid + }: + mkDerivation { + pname = "courier"; + version = "0.1.1.3"; + sha256 = "0cf44b62c2b134a7bf9aa779ef2b04d91f4b44a46273bb478ecdcbd9d1198e83"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + async base bytestring cereal containers hslogger network stm text + uuid + ]; + executableHaskellDepends = [ base cereal ]; + testHaskellDepends = [ + async base cereal containers directory hslogger HUnit network stm + test-framework test-framework-hunit + ]; + homepage = "http://github.com/hargettp/courier"; + description = "A message-passing library for simplifying network applications"; + license = stdenv.lib.licenses.mit; }) {}; "court" = callPackage @@ -67885,7 +68142,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "css-text" = callPackage + "css-text_0_1_2_1" = callPackage ({ mkDerivation, attoparsec, base, hspec, QuickCheck, text }: mkDerivation { pname = "css-text"; @@ -67896,6 +68153,21 @@ self: { homepage = "http://www.yesodweb.com/"; description = "CSS parser and renderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "css-text" = callPackage + ({ mkDerivation, attoparsec, base, hspec, QuickCheck, text }: + mkDerivation { + pname = "css-text"; + version = "0.1.2.2"; + sha256 = "dff564ac08587950dab4fedf07c357d9907099f60c87bf465d648a8965e61987"; + libraryHaskellDepends = [ attoparsec base text ]; + testHaskellDepends = [ attoparsec base hspec QuickCheck text ]; + doCheck = false; + homepage = "http://www.yesodweb.com/"; + description = "CSS parser and renderer"; + license = stdenv.lib.licenses.mit; }) {}; "csv" = callPackage @@ -69498,24 +69770,6 @@ self: { }) {}; "data-default" = callPackage - ({ mkDerivation, base, data-default-class - , data-default-instances-base, data-default-instances-containers - , data-default-instances-dlist, data-default-instances-old-locale - }: - mkDerivation { - pname = "data-default"; - version = "0.6.0"; - sha256 = "1f84023990e44e4555ac54e6bc84e4efa3bb42a0851ce0bb7b3358ef5344386d"; - libraryHaskellDepends = [ - base data-default-class data-default-instances-base - data-default-instances-containers data-default-instances-dlist - data-default-instances-old-locale - ]; - description = "A class for types with a default value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "data-default_0_7_1_1" = callPackage ({ mkDerivation, base, data-default-class , data-default-instances-containers, data-default-instances-dlist , data-default-instances-old-locale @@ -69528,24 +69782,23 @@ self: { base data-default-class data-default-instances-containers data-default-instances-dlist data-default-instances-old-locale ]; - jailbreak = true; + description = "A class for types with a default value"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "data-default-class_0_0_1" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "data-default-class"; + version = "0.0.1"; + sha256 = "adc8ee80a6f0e5903339a2b8685220b32bc3e23856d3c12186cc464ae5c88f31"; + libraryHaskellDepends = [ base ]; description = "A class for types with a default value"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-default-class" = callPackage - ({ mkDerivation, base }: - mkDerivation { - pname = "data-default-class"; - version = "0.0.1"; - sha256 = "adc8ee80a6f0e5903339a2b8685220b32bc3e23856d3c12186cc464ae5c88f31"; - libraryHaskellDepends = [ base ]; - description = "A class for types with a default value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "data-default-class_0_1_2_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "data-default-class"; @@ -69554,7 +69807,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A class for types with a default value"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-default-extra" = callPackage @@ -69619,7 +69871,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "data-default-instances-base" = callPackage + "data-default-instances-base_0_1_0" = callPackage ({ mkDerivation, base, data-default-class }: mkDerivation { pname = "data-default-instances-base"; @@ -69628,19 +69880,18 @@ self: { libraryHaskellDepends = [ base data-default-class ]; description = "Default instances for types in base"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "data-default-instances-base_0_1_0_1" = callPackage + "data-default-instances-base" = callPackage ({ mkDerivation, base, data-default-class }: mkDerivation { pname = "data-default-instances-base"; version = "0.1.0.1"; sha256 = "844fe453f674b6b0998da804465914abce8936c5e640d8bb8bff37ad07d7a17a"; libraryHaskellDepends = [ base data-default-class ]; - jailbreak = true; description = "Default instances for types in base"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-default-instances-bytestring" = callPackage @@ -69650,6 +69901,7 @@ self: { version = "0.0.1"; sha256 = "4c431278d0dc1054fd531281db70d8615f88d9b2a29924aba2567fb3cf647220"; libraryHaskellDepends = [ base bytestring data-default-class ]; + jailbreak = true; homepage = "https://github.com/trskop/data-default-extra"; description = "Default instances for (lazy and strict) ByteString, Builder and ShortByteString"; license = stdenv.lib.licenses.bsd3; @@ -69662,6 +69914,7 @@ self: { version = "0.0.1"; sha256 = "430135708ad9d0730a4c3a3d1eb574bdc6f07547a5a9c5f30202e1e786070ab4"; libraryHaskellDepends = [ case-insensitive data-default-class ]; + jailbreak = true; homepage = "https://github.com/trskop/data-default-extra"; description = "Default instance for CI type from case-insensitive package"; license = stdenv.lib.licenses.bsd3; @@ -69724,6 +69977,7 @@ self: { version = "0.0.1"; sha256 = "db5d4c46cf36ce5956ffd0affe0f2c48e1c000b9bd61821d3e6c1b0171060cdf"; libraryHaskellDepends = [ base data-default-class text ]; + jailbreak = true; homepage = "https://github.com/trskop/data-default-extra"; description = "Default instances for (lazy and strict) Text and Text Builder"; license = stdenv.lib.licenses.bsd3; @@ -69738,6 +69992,7 @@ self: { libraryHaskellDepends = [ data-default-class unordered-containers ]; + jailbreak = true; homepage = "https://github.com/trskop/data-default-extra"; description = "Default instances for unordered-containers"; license = stdenv.lib.licenses.bsd3; @@ -69750,6 +70005,7 @@ self: { version = "0.0.1"; sha256 = "9ac84473a3af8b0c5e795ea5f84a34a0c18c3b2d5e17ce428206203f9d794666"; libraryHaskellDepends = [ data-default-class vector ]; + jailbreak = true; homepage = "https://github.com/trskop/data-default-extra"; description = "Default instances for types defined in vector package"; license = stdenv.lib.licenses.bsd3; @@ -69817,6 +70073,23 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "data-elf" = callPackage + ({ mkDerivation, base, binary, bytestring, data-endian, data-flags + , data-sword, text-latin1 + }: + mkDerivation { + pname = "data-elf"; + version = "0.1.0.1"; + sha256 = "33f6f3508721bafabb5cc2d1f04b262964e178883d7dbcbe3feeb8cc069e5df9"; + libraryHaskellDepends = [ + base binary bytestring data-endian data-flags data-sword + text-latin1 + ]; + homepage = "https://github.com/mvv/data-elf"; + description = "Executable and Linkable Format (ELF) data structures"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "data-embed" = callPackage ({ mkDerivation, base, bytestring, cereal, containers, directory , executable-path, hashable, utf8-string @@ -69845,8 +70118,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "data-endian"; - version = "0.1"; - sha256 = "39b84a6b516c8d7e0fdb72ed16a77f87bae9fcffb9c9437797d406de47bb9b46"; + version = "0.1.1"; + sha256 = "8c1d4f30374f8331d31f4d7c6b39284331b6b9436e7b50f86547417bd05f2ac0"; libraryHaskellDepends = [ base ]; homepage = "https://github.com/mvv/data-endian"; description = "Endian-sensitive data"; @@ -69957,9 +70230,10 @@ self: { ({ mkDerivation, base, template-haskell }: mkDerivation { pname = "data-flags"; - version = "0.0.3.1"; - sha256 = "45bfa0c14b4e31364c5b7c70bf19f1ee3aa6ae692e08e7a70b56668503970de8"; + version = "0.0.3.2"; + sha256 = "9e8944d63a314a116d1cc8ecb115ad0ea8dabd5ccb84dbbefd332e641430794a"; libraryHaskellDepends = [ base template-haskell ]; + homepage = "https://github.com/mvv/data-flags"; description = "A package for working with bit masks and flags in general"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -70633,6 +70907,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "data-sword" = callPackage + ({ mkDerivation, base, data-bword, hashable, tasty + , tasty-quickcheck, template-haskell + }: + mkDerivation { + pname = "data-sword"; + version = "0.1.1"; + sha256 = "9fa52df57b18f0086a0a5e718221357e7f2a23917252648ec6b66c222ae6ce88"; + libraryHaskellDepends = [ + base data-bword hashable template-haskell + ]; + testHaskellDepends = [ base tasty tasty-quickcheck ]; + homepage = "https://github.com/mvv/data-sword"; + description = "Shorter binary words"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "data-tensor" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -71659,8 +71950,8 @@ self: { }: mkDerivation { pname = "dead-code-detection"; - version = "0.8"; - sha256 = "8eadc01d4df3100697b3b4f93d8253c417f851a320c2bfc2ea6362f7937b1c03"; + version = "0.8.1"; + sha256 = "6b69771ae3dac21d73ccd6fbb145dac98cf3f661787f2c59ecd6ee26726bc1fb"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -71810,17 +72101,17 @@ self: { }) {}; "debian-build" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, process, split + ({ mkDerivation, base, directory, filepath, process, split , transformers }: mkDerivation { pname = "debian-build"; - version = "0.10.0.0"; - sha256 = "3fd611276d30ea91f6d5f776f5726a3e7be702859027118639c31169597eff54"; + version = "0.10.1.0"; + sha256 = "a41033dee53346bda2f77a4192f85b54dbe3d25ef9b1fd158fdc09b4411e90b4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base Cabal directory filepath process split transformers + base directory filepath process split transformers ]; executableHaskellDepends = [ base filepath transformers ]; homepage = "http://twitter.com/khibino/"; @@ -73166,8 +73457,8 @@ self: { }: mkDerivation { pname = "deriving-compat"; - version = "0.2.2"; - sha256 = "0acf6caf0c0737c7aa0424544a54b54c3ab36310576ad404d13c73824136f7c8"; + version = "0.3"; + sha256 = "14d1921e1046ca9802dc1cc62e1343d6d8ea6ea9056b8245b57cfaf85ee408ea"; libraryHaskellDepends = [ base containers ghc-boot-th ghc-prim template-haskell transformers transformers-compat @@ -74557,8 +74848,8 @@ self: { }: mkDerivation { pname = "diagrams-graphviz"; - version = "1.3.0.1"; - sha256 = "1d2ec9533aaac6a429eac9750fd7e5fc7a21d18223010067ebeae60c0d95da05"; + version = "1.3.1"; + sha256 = "09ae6f6d08d3ed43f6f6bf711e3749f1979b2e2e6976cbd7da05bd2a8f0d6a04"; libraryHaskellDepends = [ base containers diagrams-lib fgl graphviz split ]; @@ -75564,6 +75855,7 @@ self: { libraryHaskellDepends = [ base data-default-class diagrams-lib lens ]; + jailbreak = true; homepage = "https://github.com/timjb/rubiks-cube"; description = "Library for drawing the Rubik's Cube"; license = stdenv.lib.licenses.mit; @@ -76501,8 +76793,8 @@ self: { ({ mkDerivation, base, QuickCheck }: mkDerivation { pname = "digits"; - version = "0.3"; - sha256 = "311474db49718cdb9d5dfb91a472456ee9d90eeb34b3439c63d94734792508c6"; + version = "0.3.1"; + sha256 = "a8499c9745dcf8a4e6c48594f555e6c6276e8d91c457dcc562a370ccadcd6a2c"; libraryHaskellDepends = [ base QuickCheck ]; testHaskellDepends = [ base QuickCheck ]; description = "Converts integers to lists of digits and back"; @@ -78266,7 +78558,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diversity" = callPackage + "diversity_0_8_0_0" = callPackage ({ mkDerivation, base, containers, data-ordlist, fasta , math-functions, MonadRandom, optparse-applicative, parsec, pipes , random-shuffle, scientific, split @@ -78287,6 +78579,30 @@ self: { homepage = "https://github.com/GregorySchwartz/diversity"; description = "Quantify the diversity of a population"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diversity" = callPackage + ({ mkDerivation, base, containers, data-ordlist, fasta + , math-functions, MonadRandom, optparse-applicative, parsec, pipes + , random-shuffle, scientific, split + }: + mkDerivation { + pname = "diversity"; + version = "0.8.0.1"; + sha256 = "06ee80a100424346e725777467173198a574d1df354cfd0051b0ee2983c1feba"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers data-ordlist fasta math-functions MonadRandom + parsec random-shuffle scientific split + ]; + executableHaskellDepends = [ + base containers fasta optparse-applicative pipes + ]; + homepage = "https://github.com/GregorySchwartz/diversity"; + description = "Quantify the diversity of a population"; + license = stdenv.lib.licenses.gpl3; }) {}; "dixi_0_6_0_2" = callPackage @@ -79493,6 +79809,7 @@ self: { revision = "1"; editedCabalFile = "7e6df1d4f39879e9b031c8ff5e2f6fd5be3729cc40f7515e117ac0b47ed3f675"; libraryHaskellDepends = [ base bytestring curl feed tagsoup xml ]; + jailbreak = true; homepage = "http://code.haskell.org/~dons/code/download-curl"; description = "High-level file download based on URLs"; license = stdenv.lib.licenses.bsd3; @@ -80868,12 +81185,11 @@ self: { }: mkDerivation { pname = "easyrender"; - version = "0.1.1.0"; - sha256 = "eb0ca0d7622c7aed65787e92eb2c627a9e7153aaa4afc9f9981f6d4b7c020ec4"; + version = "0.1.1.1"; + sha256 = "ad303ad4bc4f746564b32fe587a9c0290af2c2173a9370ec42a8b4dcdacbfe63"; libraryHaskellDepends = [ base bytestring containers mtl superdoc zlib ]; - jailbreak = true; homepage = "http://www.mathstat.dal.ca/~selinger/easyrender/"; description = "User-friendly creation of EPS, PostScript, and PDF files"; license = stdenv.lib.licenses.gpl3; @@ -82543,8 +82859,8 @@ self: { }: mkDerivation { pname = "elm-export"; - version = "0.3.0.2"; - sha256 = "f89797336f6a8d2d54e1015fabc0ab3f45e8ef8a3b7d7419694dd8144fb5a646"; + version = "0.4.0.1"; + sha256 = "9aa94c4d0ed01a6f6344778eee2e87b6489fc9ddd1de87154acb2be67fb7b79e"; libraryHaskellDepends = [ base bytestring containers directory mtl text time ]; @@ -83193,6 +83509,7 @@ self: { libraryHaskellDepends = [ base between data-default-class mtl transformers ]; + jailbreak = true; homepage = "https://github.com/trskop/endo"; description = "Endomorphism utilities"; license = stdenv.lib.licenses.bsd3; @@ -87025,8 +87342,8 @@ self: { }: mkDerivation { pname = "fast-digits"; - version = "0.2.0.0"; - sha256 = "b5e050775cf9cfffac1adc90ded981b5fbc56be903984aecacc138ac62e98c33"; + version = "0.2.1.0"; + sha256 = "ec84576e479202de8257c7c499b66e91bcf18444f7683475d74b575e166dd83b"; libraryHaskellDepends = [ base integer-gmp ]; testHaskellDepends = [ base digits QuickCheck smallcheck tasty tasty-quickcheck @@ -87278,7 +87595,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fasta" = callPackage + "fasta_0_10_2_0" = callPackage ({ mkDerivation, attoparsec, base, bytestring, containers, foldl , lens, parsec, pipes, pipes-attoparsec, pipes-bytestring , pipes-group, pipes-text, split, text @@ -87294,17 +87611,18 @@ self: { homepage = "https://github.com/GregorySchwartz/fasta"; description = "A simple, mindless parser for fasta files"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fasta_0_10_3_0" = callPackage + "fasta" = callPackage ({ mkDerivation, attoparsec, base, bytestring, containers, foldl , lens, parsec, pipes, pipes-attoparsec, pipes-bytestring , pipes-group, pipes-text, split, text }: mkDerivation { pname = "fasta"; - version = "0.10.3.0"; - sha256 = "31db040cf5c4ea1fb1aed11b327ffec9faf8f39344362d53472f57eeb8e20e40"; + version = "0.10.4.0"; + sha256 = "d37616f6107834ce47cc57163e9dddda055ef13b0400d74d6e77cbdd249f69da"; libraryHaskellDepends = [ attoparsec base bytestring containers foldl lens parsec pipes pipes-attoparsec pipes-bytestring pipes-group pipes-text split text @@ -87312,7 +87630,6 @@ self: { homepage = "https://github.com/GregorySchwartz/fasta"; description = "A simple, mindless parser for fasta files"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fastbayes" = callPackage @@ -88690,8 +89007,8 @@ self: { }: mkDerivation { pname = "feed-gipeda"; - version = "0.1.0.1"; - sha256 = "18be33291fc74c0ab18c8897e97f3811cb4e1e1f8fd11e084a49554d3696aa52"; + version = "0.1.0.2"; + sha256 = "609d0214ca1bbe773bb61af6c9f8ab779b0afedd612fbb3cdb467ded032d5ebf"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -92011,6 +92328,7 @@ self: { libraryHaskellDepends = [ base containers data-default-class lens linear ]; + jailbreak = true; description = "Simple force-directed layout"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -92400,6 +92718,32 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "fortran-src" = callPackage + ({ mkDerivation, alex, array, base, bytestring, containers, fgl + , GenericPretty, happy, hspec, mtl, pretty, text, uniplate + }: + mkDerivation { + pname = "fortran-src"; + version = "0.1.0.0"; + sha256 = "bfe476623599655d58d3a26c77ca17503c512eb1470fb1a39add1e8fd5f1120a"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base bytestring containers fgl GenericPretty mtl pretty text + uniplate + ]; + libraryToolDepends = [ alex happy ]; + executableHaskellDepends = [ + array base bytestring containers fgl GenericPretty mtl pretty text + uniplate + ]; + testHaskellDepends = [ + array base bytestring containers fgl hspec mtl text uniplate + ]; + description = "Parser and anlyses for Fortran standards 66, 77, 90"; + license = stdenv.lib.licenses.asl20; + }) {}; + "foscam-directory" = callPackage ({ mkDerivation, base, directory, doctest, filepath , foscam-filename, lens, pretty, QuickCheck, template-haskell @@ -95011,7 +95355,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "generic-deriving" = callPackage + "generic-deriving_1_10_5" = callPackage ({ mkDerivation, base, containers, ghc-prim, template-haskell }: mkDerivation { pname = "generic-deriving"; @@ -95023,6 +95367,21 @@ self: { homepage = "https://github.com/dreixel/generic-deriving"; description = "Generic programming library for generalised deriving"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "generic-deriving" = callPackage + ({ mkDerivation, base, containers, ghc-prim, template-haskell }: + mkDerivation { + pname = "generic-deriving"; + version = "1.10.6"; + sha256 = "be129ff66c91e2e17c62e304c0f30e5e654dc7a1d9a71beaba3219a9f5d1c2fe"; + libraryHaskellDepends = [ + base containers ghc-prim template-haskell + ]; + homepage = "https://github.com/dreixel/generic-deriving"; + description = "Generic programming library for generalised deriving"; + license = stdenv.lib.licenses.bsd3; }) {}; "generic-lucid-scaffold" = callPackage @@ -95387,7 +95746,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "generics-sop" = callPackage + "generics-sop_0_2_1_0" = callPackage ({ mkDerivation, base, ghc-prim, template-haskell }: mkDerivation { pname = "generics-sop"; @@ -95397,16 +95756,27 @@ self: { testHaskellDepends = [ base ]; description = "Generic Programming using True Sums of Products"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "generics-sop" = callPackage + ({ mkDerivation, base, ghc-prim, template-haskell }: + mkDerivation { + pname = "generics-sop"; + version = "0.2.2.0"; + sha256 = "3509e6fd5d9e1337691a88bb7941731f03cf93a42f12a6227dd1a5def9616220"; + libraryHaskellDepends = [ base ghc-prim template-haskell ]; + testHaskellDepends = [ base ]; + description = "Generic Programming using True Sums of Products"; + license = stdenv.lib.licenses.bsd3; }) {}; "generics-sop-lens" = callPackage ({ mkDerivation, base, generics-sop, lens }: mkDerivation { pname = "generics-sop-lens"; - version = "0.1.1.0"; - sha256 = "77dad1fc8dc9a9e7bd049a46ea4917b5d6e6b1d22a7194f67965126717cfd360"; - revision = "1"; - editedCabalFile = "fc41f76ff2763343ea54274f64907f4343abe3f195a4b271149a524023cfcea0"; + version = "0.1.2.0"; + sha256 = "bafd04f0238e19d73da60ae018c1c82cb3e4be49990c61a6049dec2dafff40f6"; libraryHaskellDepends = [ base generics-sop lens ]; homepage = "https://github.com/phadej/generics-sop-lens#readme"; description = "Lenses for types in generics-sop"; @@ -95624,6 +95994,48 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "genvalidity" = callPackage + ({ mkDerivation, base, QuickCheck, validity }: + mkDerivation { + pname = "genvalidity"; + version = "0.1.0.0"; + sha256 = "43477a35f12da4d8806b2a152bebb5da563c2cb442b720090597d604fe40c4f6"; + libraryHaskellDepends = [ base QuickCheck validity ]; + homepage = "https://github.com/NorfairKing/validity#readme"; + description = "Testing utilities for the validity library"; + license = stdenv.lib.licenses.mit; + }) {}; + + "genvalidity-containers" = callPackage + ({ mkDerivation, base, containers, genvalidity, QuickCheck + , validity + }: + mkDerivation { + pname = "genvalidity-containers"; + version = "0.1.0.0"; + sha256 = "2c44a1b1d0c7a0f9e6107da9fdc31f069d4211cc5cbd88e644edac38a2c6d164"; + libraryHaskellDepends = [ + base containers genvalidity QuickCheck validity + ]; + homepage = "https://github.com/NorfairKing/validity#readme"; + description = "GenValidity support for containers"; + license = stdenv.lib.licenses.mit; + }) {}; + + "genvalidity-hspec" = callPackage + ({ mkDerivation, base, genvalidity, hspec, QuickCheck, validity }: + mkDerivation { + pname = "genvalidity-hspec"; + version = "0.1.0.1"; + sha256 = "41f102071074cf13cc1635fc80fec7f562900191549b4f68dec24797ef7e6625"; + libraryHaskellDepends = [ + base genvalidity hspec QuickCheck validity + ]; + homepage = "https://github.com/NorfairKing/validity#readme"; + description = "Standard spec's for GenValidity instances"; + license = stdenv.lib.licenses.mit; + }) {}; + "geo-resolver" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, blaze-builder , bytestring, http-conduit, http-types, HUnit, QuickCheck @@ -95790,6 +96202,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "geolite-csv" = callPackage + ({ mkDerivation, base, colonnade, directory, HUnit, ip, pipes + , pipes-bytestring, pipes-text, siphon, test-framework + , test-framework-hunit, text + }: + mkDerivation { + pname = "geolite-csv"; + version = "0.1.0"; + sha256 = "c7c707f20c4f2f42f842bf18485a58555dc3dd62b8ef314cc54a10f003b2baa6"; + libraryHaskellDepends = [ base colonnade ip pipes siphon text ]; + testHaskellDepends = [ + base colonnade directory HUnit pipes pipes-bytestring pipes-text + siphon test-framework test-framework-hunit text + ]; + homepage = "https://github.com/andrewthad/colonnade"; + description = "Initial project template from stack"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "geom2d" = callPackage ({ mkDerivation, base, ieee754, linear, QuickCheck }: mkDerivation { @@ -96860,7 +97291,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ghc-typelits-extra" = callPackage + "ghc-typelits-extra_0_1_1" = callPackage ({ mkDerivation, base, ghc, ghc-tcplugins-extra , ghc-typelits-natnormalise, tasty, tasty-hunit }: @@ -96875,6 +97306,26 @@ self: { homepage = "http://www.clash-lang.org/"; description = "Additional type-level operations on GHC.TypeLits.Nat"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ghc-typelits-extra" = callPackage + ({ mkDerivation, base, ghc, ghc-tcplugins-extra + , ghc-typelits-natnormalise, tasty, tasty-hunit, transformers + }: + mkDerivation { + pname = "ghc-typelits-extra"; + version = "0.1.2"; + sha256 = "cd054d68809ed73338469afcafacd3955f417edcce93c1ef69b3cd6104062019"; + libraryHaskellDepends = [ + base ghc ghc-tcplugins-extra transformers + ]; + testHaskellDepends = [ + base ghc-typelits-natnormalise tasty tasty-hunit + ]; + homepage = "http://www.clash-lang.org/"; + description = "Additional type-level operations on GHC.TypeLits.Nat"; + license = stdenv.lib.licenses.bsd2; }) {}; "ghc-typelits-natnormalise_0_3" = callPackage @@ -96924,7 +97375,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ghc-typelits-natnormalise" = callPackage + "ghc-typelits-natnormalise_0_4_1" = callPackage ({ mkDerivation, base, ghc, ghc-tcplugins-extra, tasty, tasty-hunit }: mkDerivation { @@ -96936,6 +97387,21 @@ self: { homepage = "http://www.clash-lang.org/"; description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ghc-typelits-natnormalise" = callPackage + ({ mkDerivation, base, ghc, ghc-tcplugins-extra, tasty, tasty-hunit + }: + mkDerivation { + pname = "ghc-typelits-natnormalise"; + version = "0.4.2"; + sha256 = "b9eb8337e9643c0706352d148ad160edffc01a87f8df784efde71e15f93797a8"; + libraryHaskellDepends = [ base ghc ghc-tcplugins-extra ]; + testHaskellDepends = [ base tasty tasty-hunit ]; + homepage = "http://www.clash-lang.org/"; + description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; + license = stdenv.lib.licenses.bsd2; }) {}; "ghc-vis" = callPackage @@ -97013,8 +97479,8 @@ self: { ({ mkDerivation, base, doctest, hspec, parsec }: mkDerivation { pname = "ghci-history-parser"; - version = "0.1.0.1"; - sha256 = "e84ecff3405aa1ad8b4e148648b7d0775f887b46de5adfdca18547f92243d0d2"; + version = "0.1.0.2"; + sha256 = "0e6d39875a54a7744fedd73103301d188ec291d9da2f7abc6c85b87143b1f068"; libraryHaskellDepends = [ base parsec ]; testHaskellDepends = [ base doctest hspec parsec ]; description = "parse output of ghci \":history\" command"; @@ -98002,7 +98468,7 @@ self: { "gi-javascriptcore" = callPackage ({ mkDerivation, base, bytestring, containers, haskell-gi - , haskell-gi-base, javascriptcoregtk, text, transformers + , haskell-gi-base, javascriptcoregtk, text, transformers, webkitgtk }: mkDerivation { pname = "gi-javascriptcore"; @@ -98012,17 +98478,18 @@ self: { base bytestring containers haskell-gi haskell-gi-base text transformers ]; - libraryPkgconfigDepends = [ javascriptcoregtk ]; + libraryPkgconfigDepends = [ javascriptcoregtk webkitgtk ]; doHaddock = false; + preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${webkitgtk}/share/gir-1.0"; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "JavaScriptCore bindings"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = [ "x86_64-darwin" ]; - }) {javascriptcoregtk = null;}; + }) {javascriptcoregtk = null; inherit (pkgs) webkitgtk;}; "gi-javascriptcore_4_0_6" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, haskell-gi - , haskell-gi-base, javascriptcoregtk, text, transformers + , haskell-gi-base, javascriptcoregtk, text, transformers, webkitgtk }: mkDerivation { pname = "gi-javascriptcore"; @@ -98032,13 +98499,14 @@ self: { libraryHaskellDepends = [ base bytestring containers haskell-gi-base text transformers ]; - libraryPkgconfigDepends = [ javascriptcoregtk ]; + libraryPkgconfigDepends = [ javascriptcoregtk webkitgtk ]; doHaddock = false; + preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${webkitgtk}/share/gir-1.0"; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "JavaScriptCore bindings"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; - }) {javascriptcoregtk = null;}; + }) {javascriptcoregtk = null; inherit (pkgs) webkitgtk;}; "gi-notify" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gi-gdkpixbuf @@ -98313,6 +98781,26 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {webkit2gtk-web-extension = null;}; + "giak" = callPackage + ({ mkDerivation, async, base, bytestring, Cabal, containers + , directory, extra, filemanip, filepath, mtl, process, semigroups + , stm, stm-chans, text, unix, wybor + }: + mkDerivation { + pname = "giak"; + version = "0.1.0.1"; + sha256 = "13cbbbec91cf23cc178843525c03cf5bba162842a8ddc4259ab3efdbe18b6073"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + async base bytestring Cabal containers directory extra filemanip + filepath mtl process semigroups stm stm-chans text unix wybor + ]; + homepage = "http://github.com/nmattia/giak"; + description = "Fuzzy finder for cabal executables"; + license = stdenv.lib.licenses.mit; + }) {}; + "gimlh" = callPackage ({ mkDerivation, base, split }: mkDerivation { @@ -99664,6 +100152,7 @@ self: { base bytestring directory filepath hslogger HTTP mtl network network-uri syb url utf8-string ]; + jailbreak = true; homepage = "http://gitit.net"; description = "Wiki using happstack, git or darcs, and pandoc"; license = "GPL"; @@ -100834,8 +101323,8 @@ self: { ({ mkDerivation, base, bmp, bytestring, containers, GLUT, OpenGL }: mkDerivation { pname = "gloss-rendering"; - version = "1.10.2.1"; - sha256 = "850f3be265b9b350772530aa6a19cabbcd9b88490508d82cab8e79437dbf5ce3"; + version = "1.10.3.1"; + sha256 = "c39f51b8b026f717e9469716ec0afa17aa7804eb6794a3d0c3eb712b8d8404ba"; libraryHaskellDepends = [ base bmp bytestring containers GLUT OpenGL ]; @@ -101093,23 +101582,28 @@ self: { }) {inherit (pkgs.gnome) gnome_vfs; gnome_vfs_module = null;}; "gnss-converters" = callPackage - ({ mkDerivation, base, basic-prelude, binary-conduit, conduit - , conduit-extra, lens, resourcet, rtcm, sbp, tasty, tasty-hunit - , time + ({ mkDerivation, base, basic-prelude, binary-conduit, bytestring + , conduit, conduit-extra, extra, HUnit-approx, lens, resourcet + , rtcm, sbp, tasty, tasty-hunit, time, unordered-containers }: mkDerivation { pname = "gnss-converters"; - version = "0.1.9"; - sha256 = "0bea171d430190d7caeb6551e208b86d5fc8b9af82733445bf1e4d6585471dce"; + version = "0.1.11"; + sha256 = "30b908f69abc9fceb6b0b510ef764b9ae26020b7e6d1ffeaf7f6582b401c9542"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base basic-prelude conduit-extra lens rtcm sbp time + base basic-prelude conduit-extra extra lens rtcm sbp time + unordered-containers ]; executableHaskellDepends = [ base basic-prelude binary-conduit conduit conduit-extra resourcet ]; - testHaskellDepends = [ base basic-prelude tasty tasty-hunit ]; + testHaskellDepends = [ + base basic-prelude binary-conduit bytestring conduit conduit-extra + HUnit-approx lens resourcet sbp tasty tasty-hunit + unordered-containers + ]; homepage = "http://github.com/swift-nav/gnss-converters"; description = "GNSS Converters"; license = stdenv.lib.licenses.bsd3; @@ -103917,7 +104411,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "graphviz" = callPackage + "graphviz_2999_18_1_0" = callPackage ({ mkDerivation, base, bytestring, colour, containers, directory , dlist, fgl, fgl-arbitrary, filepath, polyparse, process , QuickCheck, temporary, text, transformers, wl-pprint-text @@ -103937,6 +104431,29 @@ self: { homepage = "http://projects.haskell.org/graphviz/"; description = "Bindings to Graphviz for graph visualisation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "graphviz" = callPackage + ({ mkDerivation, base, bytestring, colour, containers, directory + , dlist, fgl, fgl-arbitrary, filepath, polyparse, process + , QuickCheck, temporary, text, transformers, wl-pprint-text + }: + mkDerivation { + pname = "graphviz"; + version = "2999.18.1.1"; + sha256 = "059de2521e36fd6b43b387113d6617da5949c8638be829a31b2d62d87ed4fe61"; + libraryHaskellDepends = [ + base bytestring colour containers directory dlist fgl filepath + polyparse process temporary text transformers wl-pprint-text + ]; + testHaskellDepends = [ + base containers fgl fgl-arbitrary filepath QuickCheck text + ]; + doCheck = false; + homepage = "http://projects.haskell.org/graphviz/"; + description = "Bindings to Graphviz for graph visualisation"; + license = stdenv.lib.licenses.bsd3; }) {}; "grasp" = callPackage @@ -109809,7 +110326,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "happstack-authenticate" = callPackage + "happstack-authenticate_2_3_4_2" = callPackage ({ mkDerivation, acid-state, aeson, authenticate, base , base64-bytestring, boomerang, bytestring, containers , data-default, email-validate, filepath, happstack-hsp @@ -109839,6 +110356,36 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "happstack-authenticate" = callPackage + ({ mkDerivation, acid-state, aeson, authenticate, base + , base64-bytestring, boomerang, bytestring, containers + , data-default, email-validate, filepath, happstack-hsp + , happstack-jmacro, happstack-server, hsp, hsx-jmacro, hsx2hs + , http-conduit, http-types, ixset-typed, jmacro, jwt, lens + , mime-mail, mtl, pwstore-purehaskell, random, safecopy + , shakespeare, text, time, unordered-containers, userid, web-routes + , web-routes-boomerang, web-routes-happstack, web-routes-hsp + , web-routes-th + }: + mkDerivation { + pname = "happstack-authenticate"; + version = "2.3.4.3"; + sha256 = "6029d43f6cf78e68cd88c28a8c9aefacfc6062cc4f7e798a72302ac43abecc30"; + libraryHaskellDepends = [ + acid-state aeson authenticate base base64-bytestring boomerang + bytestring containers data-default email-validate filepath + happstack-hsp happstack-jmacro happstack-server hsp hsx-jmacro + hsx2hs http-conduit http-types ixset-typed jmacro jwt lens + mime-mail mtl pwstore-purehaskell random safecopy shakespeare text + time unordered-containers userid web-routes web-routes-boomerang + web-routes-happstack web-routes-hsp web-routes-th + ]; + homepage = "http://www.happstack.com/"; + description = "Happstack Authentication Library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "happstack-clientsession" = callPackage ({ mkDerivation, base, bytestring, cereal, clientsession , happstack-server, monad-control, mtl, safecopy, transformers-base @@ -112621,7 +113168,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haskell-packages" = callPackage + "haskell-packages_0_3" = callPackage ({ mkDerivation, aeson, base, bytestring, Cabal, containers , deepseq, directory, filepath, haskell-src-exts, hse-cpp, mtl , optparse-applicative, tagged, transformers, transformers-compat @@ -112639,6 +113186,26 @@ self: { homepage = "http://documentup.com/haskell-suite/haskell-packages"; description = "Haskell suite library for package management and integration with Cabal"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "haskell-packages" = callPackage + ({ mkDerivation, aeson, base, bytestring, Cabal, containers + , deepseq, directory, filepath, haskell-src-exts, hse-cpp, mtl + , optparse-applicative, tagged, transformers, transformers-compat + }: + mkDerivation { + pname = "haskell-packages"; + version = "0.4"; + sha256 = "2c9af5515ce210da304560d6a16b36fa056eefcb2ec609dc0b25c2002ba31021"; + libraryHaskellDepends = [ + aeson base bytestring Cabal containers deepseq directory filepath + haskell-src-exts hse-cpp mtl optparse-applicative tagged + transformers transformers-compat + ]; + homepage = "http://documentup.com/haskell-suite/haskell-packages"; + description = "Haskell suite library for package management and integration with Cabal"; + license = stdenv.lib.licenses.mit; hydraPlatforms = [ "x86_64-darwin" ]; }) {}; @@ -116058,6 +116625,7 @@ self: { base bytestring data-default-class hostname HTTP http-server mtl url ]; + jailbreak = true; homepage = "http://github.com/achudnov/haxy"; description = "A simple HTTP proxy server library"; license = stdenv.lib.licenses.bsd3; @@ -116546,6 +117114,7 @@ self: { libraryHaskellDepends = [ base extensible-exceptions filepath hsyslog mtl unix ]; + jailbreak = true; homepage = "http://github.com/greydot/hdaemonize"; description = "Library to handle the details of writing daemons for UNIX"; license = stdenv.lib.licenses.bsd3; @@ -117405,6 +117974,25 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "heckle" = callPackage + ({ mkDerivation, base, blaze-html, containers, directory, pandoc + , pandoc-types, process, split, tagsoup + }: + mkDerivation { + pname = "heckle"; + version = "0.1.0.0"; + sha256 = "5a7d9efbdf71d3b6da4da7329b8999d244844cc9469b91d61a000438bb07d65e"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base blaze-html containers directory pandoc pandoc-types process + split tagsoup + ]; + jailbreak = true; + description = "Jekyll in Haskell"; + license = stdenv.lib.licenses.asl20; + }) {}; + "hedis_0_6_9" = callPackage ({ mkDerivation, attoparsec, base, BoundedChan, bytestring , bytestring-lexing, HUnit, mtl, network, resource-pool @@ -117511,6 +118099,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hedis-namespace" = callPackage + ({ mkDerivation, base, bytestring, hedis, mtl }: + mkDerivation { + pname = "hedis-namespace"; + version = "0.1.0.0"; + sha256 = "3937dec2f23486380417142ef1342413be5bb7507ea11d3c22b94e4e510ddae1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring hedis mtl ]; + executableHaskellDepends = [ base bytestring hedis mtl ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/githubuser/hedis-namespace#readme"; + description = "Initial project template from stack"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hedis-pile" = callPackage ({ mkDerivation, base, binary, bytestring, hedis, hedis-tags, HUnit , lifted-base, string-conversions, test-framework @@ -121173,23 +121777,19 @@ self: { }) {}; "hjsonpointer" = callPackage - ({ mkDerivation, aeson, base, http-types, HUnit, QuickCheck - , test-framework, test-framework-hunit, test-framework-quickcheck2 + ({ mkDerivation, aeson, base, hspec, http-types, HUnit, QuickCheck , text, unordered-containers, vector }: mkDerivation { pname = "hjsonpointer"; - version = "0.3.0.1"; - sha256 = "336e55ff4951e87dd4bed587378c9809c67d5462a88b30c186a56d61aa452b41"; - isLibrary = true; - isExecutable = true; + version = "0.3.0.2"; + sha256 = "caf6f9df4af27b0dae0bc0c39be4eb623743f70602df251fd5e9fb1732795747"; libraryHaskellDepends = [ aeson base QuickCheck text unordered-containers vector ]; - executableHaskellDepends = [ aeson base ]; testHaskellDepends = [ - aeson base http-types HUnit test-framework test-framework-hunit - test-framework-quickcheck2 text unordered-containers vector + aeson base hspec http-types HUnit QuickCheck text + unordered-containers vector ]; homepage = "https://github.com/seagreen/hjsonpointer"; description = "JSON Pointer library"; @@ -121199,23 +121799,24 @@ self: { "hjsonschema" = callPackage ({ mkDerivation, aeson, async, base, bytestring, containers , directory, file-embed, filepath, hjsonpointer, http-client - , http-types, HUnit, pcre-heavy, QuickCheck, scientific, semigroups - , tasty, tasty-hunit, tasty-quickcheck, text, unordered-containers - , vector, wai-app-static, warp + , http-types, HUnit, pcre-heavy, profunctors, QuickCheck + , scientific, semigroups, tasty, tasty-hunit, tasty-quickcheck + , text, unordered-containers, vector, wai-app-static, warp }: mkDerivation { pname = "hjsonschema"; - version = "0.10.0.3"; - sha256 = "ab44f4673a1e701c035a3002f509a7a20abd5958b17155861a2d37f8fdc11b51"; + version = "1.0.0.0"; + sha256 = "f2d1ad345ff76e3bc3d738ebc3179bdec64a97ff66f7ade29aaf416c13f38787"; libraryHaskellDepends = [ aeson base bytestring containers file-embed filepath hjsonpointer - http-client http-types pcre-heavy QuickCheck scientific semigroups - text unordered-containers vector + http-client http-types pcre-heavy profunctors QuickCheck scientific + semigroups text unordered-containers vector ]; testHaskellDepends = [ aeson async base bytestring directory filepath hjsonpointer HUnit - QuickCheck semigroups tasty tasty-hunit tasty-quickcheck text - unordered-containers vector wai-app-static warp + profunctors QuickCheck semigroups tasty tasty-hunit + tasty-quickcheck text unordered-containers vector wai-app-static + warp ]; homepage = "https://github.com/seagreen/hjsonschema"; description = "JSON Schema library"; @@ -123176,11 +123777,11 @@ self: { ({ mkDerivation, base, integer-gmp, mpfr }: mkDerivation { pname = "hmpfr"; - version = "0.3.3.5"; - sha256 = "c4f17c265406145d9beccca5c88390af5fa80844aa2ee76310139ec75dcdf801"; + version = "0.4.0.2"; + sha256 = "c6f0bfdc5ea4f19892e40d67169808445bdeff50dcdc0d2b40f621d1e1013f90"; libraryHaskellDepends = [ base integer-gmp ]; librarySystemDepends = [ mpfr ]; - homepage = "http://code.google.com/p/hmpfr/"; + homepage = "https://github.com/michalkonecny/hmpfr"; description = "Haskell binding to the MPFR library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; @@ -124569,10 +125170,8 @@ self: { }: mkDerivation { pname = "hoogle"; - version = "5.0"; - sha256 = "19fa34b6695956548f3dc1992e883bb7cf32459d260587dd5a06ef986684c50f"; - revision = "1"; - editedCabalFile = "aee369809a5bc7892a0c58189e4905dac0204a8c119a20bc8d26011c6d37af72"; + version = "5.0.1"; + sha256 = "7aea6d779e14574f78f4506949f96a020ac1f8273b84f418094197366cc3112e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -131203,7 +131802,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "hsyslog" = callPackage + "hsyslog_2_0" = callPackage ({ mkDerivation, base, doctest }: mkDerivation { pname = "hsyslog"; @@ -131214,10 +131813,11 @@ self: { homepage = "http://github.com/peti/hsyslog"; description = "FFI interface to syslog(3) from POSIX.1-2001"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; - "hsyslog_4" = callPackage + "hsyslog" = callPackage ({ mkDerivation, base, bytestring, QuickCheck }: mkDerivation { pname = "hsyslog"; @@ -131228,7 +131828,6 @@ self: { homepage = "http://github.com/peti/hsyslog"; description = "FFI interface to syslog(3) from POSIX.1-2001"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; @@ -131244,7 +131843,6 @@ self: { base bytestring hsyslog network text time unix ]; testHaskellDepends = [ base hspec time ]; - jailbreak = true; homepage = "https://github.com/ThoughtLeadr/hsyslog-udp"; description = "Log to syslog over a network via UDP"; license = stdenv.lib.licenses.bsd3; @@ -131359,13 +131957,12 @@ self: { }: mkDerivation { pname = "htiled"; - version = "0.1.3.0"; - sha256 = "1141d497418c6f53c8e578be673073956108cf2617f8bf8af0c045a8f1f974da"; + version = "0.1.4.0"; + sha256 = "f78d4ff35328922613c93b4348738547bd55a3a196965a7e84e9e6289ba5aec1"; libraryHaskellDepends = [ base base64-bytestring bytestring containers filepath hxt split zlib ]; - jailbreak = true; description = "Import from the Tiled map editor"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -132822,7 +133419,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "http-client_0_5_0" = callPackage + "http-client_0_5_1" = callPackage ({ mkDerivation, array, async, base, base64-bytestring , blaze-builder, bytestring, case-insensitive, containers, cookie , deepseq, directory, exceptions, filepath, ghc-prim, hspec @@ -132831,10 +133428,8 @@ self: { }: mkDerivation { pname = "http-client"; - version = "0.5.0"; - sha256 = "5915ab9377690d4cb497440d7294e5e14265f2fe74d79b7e484a3883a383ca9a"; - revision = "1"; - editedCabalFile = "308e6f73c0a374472ec5221299fafbfc48888ac9d1e853416b01d4697756c3fe"; + version = "0.5.1"; + sha256 = "7406a258594989546a9706179b1ee76708b7258394a6cff280167cf26ce1d1f0"; libraryHaskellDepends = [ array base base64-bytestring blaze-builder bytestring case-insensitive containers cookie deepseq exceptions filepath @@ -132996,8 +133591,8 @@ self: { }: mkDerivation { pname = "http-client-session"; - version = "0.1.1"; - sha256 = "41d9210795f0a0bdb984ca462d8d1e214679dda1b1a606dbce69ee52189162ca"; + version = "0.1.2"; + sha256 = "9cb4f452fa5465f6247dae835e6097c6d46f177804cb6121d61f4706ad3c9e65"; libraryHaskellDepends = [ base-prelude bytestring either http-client mtl-prelude ]; @@ -133710,7 +134305,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "http-media" = callPackage + "http-media_0_6_3" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, containers , QuickCheck, test-framework, test-framework-quickcheck2 }: @@ -133729,6 +134324,27 @@ self: { homepage = "https://github.com/zmthy/http-media"; description = "Processing HTTP Content-Type and Accept headers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "http-media" = callPackage + ({ mkDerivation, base, bytestring, case-insensitive, containers + , QuickCheck, test-framework, test-framework-quickcheck2 + }: + mkDerivation { + pname = "http-media"; + version = "0.6.4"; + sha256 = "ef762cf50854250e4247b744decbebe4d3d188dbc19bfd90aa344ed3c61cc9d3"; + libraryHaskellDepends = [ + base bytestring case-insensitive containers + ]; + testHaskellDepends = [ + base bytestring case-insensitive containers QuickCheck + test-framework test-framework-quickcheck2 + ]; + homepage = "https://github.com/zmthy/http-media"; + description = "Processing HTTP Content-Type and Accept headers"; + license = stdenv.lib.licenses.mit; }) {}; "http-monad" = callPackage @@ -134230,7 +134846,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "http2" = callPackage + "http2_1_6_0" = callPackage ({ mkDerivation, aeson, aeson-pretty, array, base, bytestring , bytestring-builder, case-insensitive, containers, directory , doctest, filepath, Glob, hex, hspec, psqueues, stm, text @@ -134251,6 +134867,30 @@ self: { ]; description = "HTTP/2.0 library including frames and HPACK"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "http2" = callPackage + ({ mkDerivation, aeson, aeson-pretty, array, base, bytestring + , bytestring-builder, case-insensitive, containers, directory + , doctest, filepath, Glob, hex, hspec, psqueues, stm, text + , unordered-containers, vector, word8 + }: + mkDerivation { + pname = "http2"; + version = "1.6.1"; + sha256 = "0f69321514c5de49a0a796dcf40decc5781bcb4d53618f4e977be4eb05a88055"; + libraryHaskellDepends = [ + array base bytestring bytestring-builder case-insensitive + containers psqueues stm + ]; + testHaskellDepends = [ + aeson aeson-pretty array base bytestring bytestring-builder + case-insensitive containers directory doctest filepath Glob hex + hspec psqueues stm text unordered-containers vector word8 + ]; + description = "HTTP/2.0 library including frames and HPACK"; + license = stdenv.lib.licenses.bsd3; }) {}; "httpd-shed" = callPackage @@ -134790,8 +135430,8 @@ self: { }: mkDerivation { pname = "husk-scheme"; - version = "3.19.2"; - sha256 = "85bc2b974142778edbc354ef620fa0991b891aa5a0aaa36c1dd4ed8bd501fa63"; + version = "3.19.3"; + sha256 = "04817e7375296f24e9c28a93ec43d3b18e1717d45aeaa653cd46dc3be08d642d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -135771,6 +136411,7 @@ self: { libraryHaskellDepends = [ base hxt hxt-charproperties hxt-unicode tagsoup ]; + jailbreak = true; homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; description = "TagSoup parser for HXT"; license = "unknown"; @@ -138644,10 +139285,8 @@ self: { }: mkDerivation { pname = "imm"; - version = "1.0.0.0"; - sha256 = "05bca52253f0f6ea4fc52e07f5920012e75f20cd5e3127c7ffac5647a1512af5"; - revision = "3"; - editedCabalFile = "63bff92fa6fd212e3ba6f81b4d2e74fe47e02e86b06e8b1b1cd19588331ce5e4"; + version = "1.0.1.0"; + sha256 = "287a4815b43de90e89b27a356215e57d97c03ba4f929965b1a8ca5c4fe35658b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -138821,6 +139460,7 @@ self: { version = "0.2.1"; sha256 = "11d98bcb69c30abe29d229f2807e16381de2302a7473c53d2823b8cead0b40b5"; libraryHaskellDepends = [ base data-default-class ]; + jailbreak = true; homepage = "http://github.com/duairc/implicit-params"; description = "Named and unnamed implicit parameters with defaults"; license = stdenv.lib.licenses.bsd3; @@ -139207,10 +139847,9 @@ self: { ({ mkDerivation, base, bifunctors, indexed, mtl, pointed }: mkDerivation { pname = "indexed-extras"; - version = "0.1.1"; - sha256 = "3901759ad35d8b2333ae18142d88f3b92954b05db733f8ccac255256b5981f56"; + version = "0.2"; + sha256 = "b01fe384c942d57a62a6416f3a312e8436ce54a664421311b104f8f8a6982b9f"; libraryHaskellDepends = [ base bifunctors indexed mtl pointed ]; - jailbreak = true; homepage = "https://github.com/reinerp/indexed-extras"; description = "Indexed functors, monads and comonads that require extensions to Haskell98"; license = stdenv.lib.licenses.bsd3; @@ -140416,6 +141055,8 @@ self: { pname = "interruptible"; version = "0.1.1.1"; sha256 = "d3ef92f178d03041edc7845dd3c3ac90a3e5c6b74b5ca1bca65246ac90af1e5c"; + revision = "2"; + editedCabalFile = "995d15d4358b5c31e289ac2840132c938c2635ae359e3624af7157e71667ce80"; libraryHaskellDepends = [ base either lifted-base monad-control transformers ]; @@ -140980,19 +141621,19 @@ self: { "ip" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, doctest - , hashable, primitive, QuickCheck, test-framework - , test-framework-quickcheck2, text, vector + , hashable, HUnit, primitive, QuickCheck, test-framework + , test-framework-hunit, test-framework-quickcheck2, text, vector }: mkDerivation { pname = "ip"; - version = "0.8.1"; - sha256 = "0614467bf2db28cb5d47692906852f887bebd786643e1a5490bd23cf8a36d6bd"; + version = "0.8.4"; + sha256 = "8c0d0de5b927310848f3c17702637ed2ea15bffab5a82b6df61d5df88b74c1b6"; libraryHaskellDepends = [ aeson attoparsec base bytestring hashable primitive text vector ]; testHaskellDepends = [ - base bytestring doctest QuickCheck test-framework - test-framework-quickcheck2 text + base bytestring doctest HUnit QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 text ]; homepage = "https://github.com/andrewthad/haskell-ip#readme"; description = "Library for IP and MAC addresses"; @@ -141447,8 +142088,8 @@ self: { }: mkDerivation { pname = "irc-client"; - version = "0.4.2.0"; - sha256 = "94c8ea0d5e4d663cc78a0d9b25f283f870780a703e78229c8064d34ec23ce4fa"; + version = "0.4.2.1"; + sha256 = "2fe59527a1403a1ad960d1f7021871c85818ca3fe50f593505efb7ccbafa1308"; libraryHaskellDepends = [ base bytestring conduit irc-conduit irc-ctcp old-locale stm stm-conduit text time transformers @@ -143561,8 +144202,8 @@ self: { ({ mkDerivation, base, HTTP }: mkDerivation { pname = "js-jquery"; - version = "3.0.0"; - sha256 = "ad576481282ac48923303bc8bad50baee424425a1021ccfb61215aac8d0bd026"; + version = "3.1.0"; + sha256 = "a8db825d7740f18db4c3bad92db18e840913e1444f2d43e409dc5df691a7d3a2"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base HTTP ]; doCheck = false; @@ -143704,8 +144345,8 @@ self: { }: mkDerivation { pname = "json-api"; - version = "0.1.0.2"; - sha256 = "48d7b0256fe2b98ef762d9e74262c322cc896169a0d4ab0421c6abf281c609de"; + version = "0.1.0.4"; + sha256 = "b846d72168ec304c2b8fdc726c4b46a3439609a045d17c6ac9b64b58ca59107b"; libraryHaskellDepends = [ aeson base containers data-default lens-aeson text unordered-containers url @@ -144392,6 +145033,25 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "json-rpc-generic" = callPackage + ({ mkDerivation, aeson, base, bytestring, QuickCheck + , quickcheck-simple, scientific, text, transformers, vector + }: + mkDerivation { + pname = "json-rpc-generic"; + version = "0.0.1.0"; + sha256 = "248c91a30ec210afd5f96e0fd69a05188a1b015085313cebf6cad82ba57d2962"; + libraryHaskellDepends = [ + aeson base bytestring scientific text transformers vector + ]; + testHaskellDepends = [ + aeson base QuickCheck quickcheck-simple text + ]; + homepage = "http://github.com/khibino/haskell-json-rpc-generic"; + description = "Generic encoder and decode for JSON-RPC"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "json-rpc-server" = callPackage ({ mkDerivation, aeson, base, bytestring, deepseq, HUnit, mtl , test-framework, test-framework-hunit, text, unordered-containers @@ -144673,13 +145333,12 @@ self: { }: mkDerivation { pname = "json-sop"; - version = "0.2.0.0"; - sha256 = "2657ff212fa92b5a1cc1e36e85bee87807f7f33efb2c0d52f2967e001487ee02"; + version = "0.2.0.1"; + sha256 = "ca02139ca3a5041225f684080067c5ec8c5e0ce3421a5eea9d273db377d005c9"; libraryHaskellDepends = [ aeson base generics-sop lens-sop tagged text time transformers unordered-containers vector ]; - jailbreak = true; description = "Generics JSON (de)serialization using generics-sop"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; @@ -145711,6 +146370,34 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "keenser" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, containers + , fast-logger, hedis, hostname, lifted-base, monad-control + , monad-logger, old-locale, random, scientific, stm, text, thyme + , time, transformers, transformers-base, unix, unordered-containers + , vector-space + }: + mkDerivation { + pname = "keenser"; + version = "0.1.0.0"; + sha256 = "947e825cb31c93077fd90d978d5d04dfbb3fa2def8a634fbf71a7b8c4422919d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec base bytestring containers hedis hostname + lifted-base monad-control monad-logger old-locale random scientific + stm text thyme time transformers transformers-base unix + unordered-containers vector-space + ]; + executableHaskellDepends = [ + aeson base bytestring fast-logger hedis monad-logger text unix + ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/jamesdabbs/keenser#readme"; + description = "Initial project template from stack"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "keera-callbacks" = callPackage ({ mkDerivation, base, mtl }: mkDerivation { @@ -146923,7 +147610,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "kraken" = callPackage + "kraken_0_0_2" = callPackage ({ mkDerivation, aeson, base, bytestring, http-client , http-client-tls, mtl }: @@ -146938,6 +147625,22 @@ self: { ]; description = "Kraken.io API client"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "kraken" = callPackage + ({ mkDerivation, aeson, base, bytestring, http-client + , http-client-tls, mtl + }: + mkDerivation { + pname = "kraken"; + version = "0.0.3"; + sha256 = "4001e1c545155434985f7ca93b5d1bcc6a465c83c58d4bb41a60bbfe521b1e9d"; + libraryHaskellDepends = [ + aeson base bytestring http-client http-client-tls mtl + ]; + description = "Kraken.io API client"; + license = stdenv.lib.licenses.mit; }) {}; "krpc" = callPackage @@ -148052,7 +148755,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "lambdacube-gl" = callPackage + "lambdacube-gl_0_5_0_5" = callPackage ({ mkDerivation, base, bytestring, containers, JuicyPixels , lambdacube-ir, mtl, OpenGLRaw, vector, vector-algorithms }: @@ -148068,6 +148771,25 @@ self: { 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-gl" = callPackage + ({ mkDerivation, base, bytestring, containers, JuicyPixels + , lambdacube-ir, mtl, OpenGLRaw, vector, vector-algorithms + }: + mkDerivation { + pname = "lambdacube-gl"; + version = "0.5.1.1"; + sha256 = "44fcd8abfd86607a65702caac4894114632590473bc1701f8e082966b79c63c3"; + libraryHaskellDepends = [ + base bytestring containers JuicyPixels lambdacube-ir mtl OpenGLRaw + vector vector-algorithms + ]; + jailbreak = true; + homepage = "http://lambdacube3d.com"; + description = "OpenGL 3.3 Core Profile backend for LambdaCube 3D"; + license = stdenv.lib.licenses.bsd3; }) {}; "lambdacube-ir" = callPackage @@ -148649,13 +149371,13 @@ self: { }) {}; "language-dart" = callPackage - ({ mkDerivation, base, hspec, pretty }: + ({ mkDerivation, base, hspec, pretty, raw-strings-qq }: mkDerivation { pname = "language-dart"; - version = "0.1.0.0"; - sha256 = "da3d2463be605a48b21af178dbf74d00c90da9b909821a7f54db77f5a82b3cbb"; + version = "0.2.0.0"; + sha256 = "41b144aa3af001345cf5b2b2a249f332608d8fb7915b97f93c078dc0b4b4e9c5"; libraryHaskellDepends = [ base pretty ]; - testHaskellDepends = [ base hspec ]; + testHaskellDepends = [ base hspec raw-strings-qq ]; homepage = "https://github.com/kseo/language-dart#readme"; description = "Manipulating Dart source: abstract syntax and pretty-printer"; license = stdenv.lib.licenses.bsd3; @@ -148780,6 +149502,7 @@ self: { mtl parsec QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 uniplate wl-pprint ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/jswebtools/language-ecmascript"; description = "JavaScript parser and pretty-printer library"; @@ -149473,6 +150196,51 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "language-puppet_1_3" = callPackage + ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base + , base16-bytestring, bytestring, case-insensitive, containers + , cryptonite, directory, either, exceptions, filecache, formatting + , Glob, hashable, hruby, hslogger, hspec, hspec-megaparsec + , http-api-data, http-client, HUnit, lens, lens-aeson, megaparsec + , memory, mtl, operational, optparse-applicative, parallel-io + , parsec, pcre-utils, process, random, regex-pcre-builtin + , scientific, semigroups, servant, servant-client, split, stm + , strict-base-types, temporary, text, time, transformers, unix + , unordered-containers, vector, yaml + }: + mkDerivation { + pname = "language-puppet"; + version = "1.3"; + sha256 = "59a06ac062a1825425fabaaf7ec2e5305e4fb2627db4d91cfa2cc996d37728d6"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson ansi-wl-pprint attoparsec base base16-bytestring bytestring + case-insensitive containers cryptonite directory either exceptions + filecache formatting hashable hruby hslogger hspec http-api-data + http-client lens lens-aeson megaparsec memory mtl operational + parsec pcre-utils process random regex-pcre-builtin scientific + semigroups servant servant-client split stm strict-base-types text + time transformers unix unordered-containers vector yaml + ]; + executableHaskellDepends = [ + aeson base bytestring containers Glob hslogger http-client lens + megaparsec mtl optparse-applicative parallel-io regex-pcre-builtin + servant-client strict-base-types text transformers + unordered-containers vector yaml + ]; + testHaskellDepends = [ + ansi-wl-pprint base Glob hslogger hspec hspec-megaparsec HUnit lens + megaparsec mtl scientific strict-base-types temporary text + transformers unix unordered-containers vector + ]; + jailbreak = true; + homepage = "http://lpuppet.banquise.net/"; + description = "Tools to parse and evaluate the Puppet DSL"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "language-python" = callPackage ({ mkDerivation, alex, array, base, containers, happy, monads-tf , pretty, transformers, utf8-string @@ -150450,8 +151218,8 @@ self: { ({ mkDerivation, base, QuickCheck, time }: mkDerivation { pname = "leapseconds-announced"; - version = "2015.0.0.1"; - sha256 = "15fabb848809ffd47010161bc7cd3f301862b63f93f3c7c5e228b3809d84134d"; + version = "2017"; + sha256 = "7fdbc929cfcb87f1daa0d2a278aeb58264ee82bf96ece918013b5b942a477dab"; libraryHaskellDepends = [ base time ]; testHaskellDepends = [ base QuickCheck time ]; homepage = "https://github.com/bjornbm/leapseconds-announced"; @@ -151214,12 +151982,11 @@ self: { ({ mkDerivation, base, fclabels, generics-sop, transformers }: mkDerivation { pname = "lens-sop"; - version = "0.2.0.0"; - sha256 = "36f5a59ee68921496502c5586cd968ca2524cbb4be718763892c0daf26c7280a"; + version = "0.2.0.1"; + sha256 = "13a335a49acfef59ab8d39845a5bb174826c342c1705a96caa0c7d1fba6d7966"; libraryHaskellDepends = [ base fclabels generics-sop transformers ]; - jailbreak = true; description = "Computing lenses generically using generics-sop"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; @@ -152646,6 +153413,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "lifted-protolude" = callPackage + ({ mkDerivation, async, base, bytestring, containers, deepseq + , exceptions, ghc-prim, lifted-async, lifted-base, mtl, safe, stm + , text, transformers + }: + mkDerivation { + pname = "lifted-protolude"; + version = "0.1.6"; + sha256 = "ad5cbb992e07d92bfc71cb566ac2472d4996a925b17bb92c1da3c7d97cdf31eb"; + libraryHaskellDepends = [ + async base bytestring containers deepseq exceptions ghc-prim + lifted-async lifted-base mtl safe stm text transformers + ]; + homepage = "https://github.com/parsonsmat/lifted-protolude"; + description = "A sensible set of defaults for writing lifted custom Preludes"; + license = stdenv.lib.licenses.mit; + }) {}; + "lifted-threads" = callPackage ({ mkDerivation, base, monad-control, threads, transformers-base }: mkDerivation { @@ -155009,6 +155794,7 @@ self: { tagged-exception-core test-framework test-framework-hunit test-framework-quickcheck2 transformers ]; + jailbreak = true; homepage = "https://github.com/trskop/lock-file"; description = "Provide exclusive access to a resource using lock file"; license = stdenv.lib.licenses.bsd3; @@ -155319,6 +156105,27 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "logentries" = callPackage + ({ mkDerivation, base, bytestring, data-default, fast-logger, hspec + , network, stm, uuid-types, wai, wai-extra + }: + mkDerivation { + pname = "logentries"; + version = "0.1.0.1"; + sha256 = "229f47a750e4a741bea48563ccf70cd59641f5f761beff66f168108dbdc15572"; + libraryHaskellDepends = [ + base bytestring data-default fast-logger network stm uuid-types wai + wai-extra + ]; + testHaskellDepends = [ + base bytestring fast-logger hspec uuid-types + ]; + jailbreak = true; + homepage = "https://github.com/toddmohney/logentries#README.md"; + description = "Request logger middleware for Logentries"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "logfloat_0_12_1" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -156072,7 +156879,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ltext" = callPackage + "ltext_0_0_2_1" = callPackage ({ mkDerivation, aeson, base, containers, data-default, deepseq , directory, hspec, mtl, mtl-compat, optparse-applicative, parsec , pretty, template-haskell, text, transformers, yaml @@ -156096,6 +156903,36 @@ self: { jailbreak = true; description = "Higher-order file applicator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ltext" = callPackage + ({ mkDerivation, attoparsec, base, directory, exceptions, extra + , HFuse, mtl, optparse-applicative, pretty, QuickCheck + , quickcheck-combinators, tasty, tasty-quickcheck, text + , transformers, unordered-containers + }: + mkDerivation { + pname = "ltext"; + version = "0.1.0"; + sha256 = "a9a9d43833a12c8ec19e4fdb3b1c94002fb3b91d2ee8bc6557abd4e6ea709fad"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + attoparsec base directory exceptions extra HFuse mtl pretty + QuickCheck quickcheck-combinators text transformers + unordered-containers + ]; + executableHaskellDepends = [ + attoparsec base directory exceptions extra mtl optparse-applicative + pretty QuickCheck quickcheck-combinators text transformers + unordered-containers + ]; + testHaskellDepends = [ + base QuickCheck quickcheck-combinators tasty tasty-quickcheck text + ]; + description = "Higher-order file applicator"; + license = stdenv.lib.licenses.bsd3; }) {}; "ltiv1p1" = callPackage @@ -157738,6 +158575,34 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "makefile" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, doctest, Glob }: + mkDerivation { + pname = "makefile"; + version = "0.1.0.1"; + sha256 = "d78c1bf4e9ddd60f61a575887a742f20cdd9f1193a920b46ac9e5ad73d1089b5"; + libraryHaskellDepends = [ attoparsec base bytestring ]; + testHaskellDepends = [ attoparsec base bytestring doctest Glob ]; + doCheck = false; + homepage = "http://github.com/nmattia/mask"; + description = "Simple Makefile parser"; + license = stdenv.lib.licenses.mit; + }) {}; + + "makefile_0_1_0_3" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, doctest, Glob }: + mkDerivation { + pname = "makefile"; + version = "0.1.0.3"; + sha256 = "2ad77fc1cc390225ecb7155f6df87b3be5bdba5803629ba687f98711a8114e4a"; + libraryHaskellDepends = [ attoparsec base bytestring ]; + testHaskellDepends = [ attoparsec base bytestring doctest Glob ]; + homepage = "http://github.com/nmattia/mask"; + description = "Simple Makefile parser"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "managed_1_0_0" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { @@ -158405,7 +159270,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mandrill" = callPackage + "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 @@ -158427,6 +159292,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.2"; + sha256 = "99031db2a5406c4fe2f3523af6220d793d57f3e75d106e75bfa1bdac9eb77582"; + 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 @@ -158901,10 +159791,9 @@ self: { ({ mkDerivation, base, containers, random, transformers }: mkDerivation { pname = "markov-chain"; - version = "0.0.3.3"; - sha256 = "a8d32b259b4d5508c4c2fce44013c2d095f808fe5af072144ccabc669c962ef9"; + version = "0.0.3.4"; + sha256 = "6e51b800101a28593be28ce7ef1b21b7cc7a177a821fb99ecd8a28c69b7b92cd"; libraryHaskellDepends = [ base containers random transformers ]; - jailbreak = true; homepage = "http://code.haskell.org/~thielema/markov-chain/"; description = "Markov Chains for generating random sequences with a user definable behaviour"; license = "GPL"; @@ -159198,7 +160087,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "math-functions" = callPackage + "math-functions_0_1_7_0" = callPackage ({ mkDerivation, base, deepseq, erf, HUnit, primitive, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 , vector, vector-th-unbox @@ -159221,6 +160110,30 @@ 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" = callPackage + ({ mkDerivation, base, deepseq, erf, HUnit, primitive, QuickCheck + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , vector, vector-th-unbox + }: + mkDerivation { + pname = "math-functions"; + version = "0.2.0.1"; + sha256 = "ac165116d981d879b4ea4f387d40140515d75823d8d60295514c41dbf4cac641"; + libraryHaskellDepends = [ + base deepseq primitive vector vector-th-unbox + ]; + testHaskellDepends = [ + base deepseq erf HUnit primitive QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 vector + vector-th-unbox + ]; + doCheck = false; + homepage = "https://github.com/bos/math-functions"; + description = "Special functions and Chebyshev polynomials"; + license = stdenv.lib.licenses.bsd3; }) {}; "mathblog" = callPackage @@ -159672,6 +160585,26 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "mcm" = callPackage + ({ mkDerivation, base, blaze-html, bytestring, containers + , directory, filepath, hostname, MissingH, polyparse, process, text + , unix + }: + mkDerivation { + pname = "mcm"; + version = "0.6.4.10"; + sha256 = "daa13513fd3b7d0c6469977020b61a659ec43fc1dab891b01ba34f39ebf8d364"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base blaze-html bytestring containers directory filepath hostname + MissingH polyparse process text unix + ]; + homepage = "http://interfaces.org.uk/mcm"; + description = "Machine Configuration Manager"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "mcmaster-gloss-examples" = callPackage ({ mkDerivation, base, gloss }: mkDerivation { @@ -160028,16 +160961,17 @@ self: { }) {}; "megaparsec" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions, HUnit - , mtl, QuickCheck, scientific, test-framework, test-framework-hunit - , test-framework-quickcheck2, text, transformers + ({ mkDerivation, base, bytestring, containers, deepseq, exceptions + , HUnit, mtl, QuickCheck, scientific, test-framework + , test-framework-hunit, test-framework-quickcheck2, text + , transformers }: mkDerivation { pname = "megaparsec"; - version = "5.0.0"; - sha256 = "6ed6448cfd5f37017296b5ce170e037d11855c9d52e7ef01103313514fbead70"; + version = "5.0.1"; + sha256 = "8bd9c4f4f1d92cf45577ceabd13f58e0a980848142fba1036fa37bcab4aa3b25"; libraryHaskellDepends = [ - base bytestring containers exceptions mtl scientific text + base bytestring containers deepseq exceptions mtl scientific text transformers ]; testHaskellDepends = [ @@ -160165,7 +161099,6 @@ self: { testHaskellDepends = [ base binary blaze-builder bytestring network ]; - jailbreak = true; homepage = "https://github.com/dterei/memcache-hs"; description = "A memcached client library"; license = stdenv.lib.licenses.bsd3; @@ -161375,6 +162308,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "microlens-mtl_0_1_9_0" = callPackage + ({ mkDerivation, base, microlens, mtl, transformers + , transformers-compat + }: + mkDerivation { + pname = "microlens-mtl"; + version = "0.1.9.0"; + sha256 = "cf6dfd8c069eed3361952e8db75a065ab94072c430ed2a43a7a7383344726ac8"; + libraryHaskellDepends = [ + base microlens mtl transformers transformers-compat + ]; + homepage = "http://github.com/aelve/microlens"; + description = "microlens support for Reader/Writer/State from mtl"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "microlens-platform_0_1_7_0" = callPackage ({ mkDerivation, base, hashable, microlens, microlens-ghc , microlens-mtl, microlens-th, text, unordered-containers, vector @@ -161506,6 +162456,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "microlens-platform_0_3_3_0" = callPackage + ({ mkDerivation, base, hashable, microlens, microlens-ghc + , microlens-mtl, microlens-th, text, unordered-containers, vector + }: + mkDerivation { + pname = "microlens-platform"; + version = "0.3.3.0"; + sha256 = "174c87afcb0d3004e52b4283773aa16d2a6f0a3b819b362a36f75d7e72433ca8"; + libraryHaskellDepends = [ + base hashable microlens microlens-ghc microlens-mtl microlens-th + text unordered-containers vector + ]; + jailbreak = true; + homepage = "http://github.com/aelve/microlens"; + description = "Feature-complete microlens"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "microlens-th_0_2_1_0" = callPackage ({ mkDerivation, base, containers, microlens, template-haskell }: mkDerivation { @@ -161835,8 +162804,8 @@ self: { }: mkDerivation { pname = "mighttpd2"; - version = "3.3.2"; - sha256 = "3d9dc5ef52d5b62cdbccb234ce29edc1a6c37184333715b88ee152770135a47e"; + version = "3.3.3"; + sha256 = "f716ab686c9edb2d549f03b069c3b630dd5c147eff6ab1317781450c47a8f7b4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -161852,6 +162821,7 @@ self: { warp ]; testHaskellDepends = [ base hspec http-client ]; + jailbreak = true; homepage = "http://www.mew.org/~kazu/proj/mighttpd/"; description = "High performance web server on WAI/warp"; license = stdenv.lib.licenses.bsd3; @@ -162943,8 +163913,8 @@ self: { }: mkDerivation { pname = "modify-fasta"; - version = "0.8.2.0"; - sha256 = "8d5f8148b969147edef5483e72edd419f2184a0e43da2bdf201e09cf2d42877a"; + version = "0.8.2.1"; + sha256 = "5af7cddb753353ac1e16e15e5962e6a6c46eeb6a1d1ae38a8f014e20b04e61a0"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -163218,15 +164188,15 @@ self: { }) {}; "monad-abort-fd" = callPackage - ({ mkDerivation, base, data-default, monad-control, mtl - , transformers, transformers-abort, transformers-base + ({ mkDerivation, base, monad-control, mtl, transformers + , transformers-abort, transformers-base }: mkDerivation { pname = "monad-abort-fd"; - version = "0.4"; - sha256 = "f98fe481b4dd57e1fdb5a30899b53eb0183265fcb02212151faa3263f04dde06"; + version = "0.5"; + sha256 = "677915c0c44d2e0ed478ff0637a5c9c291762e61619a3133f8331bfc855ed8fb"; libraryHaskellDepends = [ - base data-default monad-control mtl transformers transformers-abort + base monad-control mtl transformers transformers-abort transformers-base ]; homepage = "https://github.com/mvv/monad-abort-fd"; @@ -163740,6 +164710,25 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "monad-lgbt" = callPackage + ({ mkDerivation, base, containers, deepseq, hspec, logict, mtl + , QuickCheck + }: + mkDerivation { + pname = "monad-lgbt"; + version = "0.0.1"; + sha256 = "259b2c08e8690873202f06eb8ef66ec51a0104bf13bc24670885c4db773bb2f1"; + libraryHaskellDepends = [ + base containers deepseq hspec logict mtl QuickCheck + ]; + testHaskellDepends = [ + base containers deepseq hspec logict mtl QuickCheck + ]; + homepage = "https://github.com/mgajda/monad-lgbt#readme"; + description = "Monad transformers for combining local and global state"; + license = stdenv.lib.licenses.bsd2; + }) {}; + "monad-log" = callPackage ({ mkDerivation, aeson, base, bytestring, exceptions, fast-logger , lifted-base, monad-control, template-haskell, text, text-show @@ -164033,8 +165022,8 @@ self: { }: mkDerivation { pname = "monad-logger-prefix"; - version = "0.1.1"; - sha256 = "80974cef0fb2393a085653014c3448d804f5083694bc8aa901f74541e2afb754"; + version = "0.1.2"; + sha256 = "e9fdf038d50ddf6ae448591f758447359ea3f4f35f5f7e3d092c3f87ed686166"; libraryHaskellDepends = [ base exceptions monad-control monad-logger mtl resourcet text transformers transformers-base @@ -165630,8 +166619,8 @@ self: { }: mkDerivation { pname = "mono-traversable"; - version = "1.0.0"; - sha256 = "53ba4d590601f8b1ab376b9eb4b72e451ef131860022f91466b04610ec82e1c8"; + version = "1.0.0.1"; + sha256 = "001d1fba5e3da63c46784a621d1430937e9537b38c0a74876e489ff4d7d3828a"; libraryHaskellDepends = [ base bytestring containers hashable split text transformers unordered-containers vector vector-algorithms @@ -166233,8 +167222,8 @@ self: { }: mkDerivation { pname = "morph"; - version = "0.1.0.0"; - sha256 = "573ca63c508fd54740fa4bc26523990238e306f048e5f01ec9b3a9b317c9629f"; + version = "0.1.0.1"; + sha256 = "8ac454d889af2ebe0ef92011e85c9b005be07262a642e3435dac6951c38363f6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -169769,6 +170758,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "nested-sequence" = callPackage + ({ mkDerivation, base, QuickCheck, test-framework + , test-framework-quickcheck2 + }: + mkDerivation { + pname = "nested-sequence"; + version = "0.2"; + sha256 = "6cd980c6f15d6a664d8d8b1255a5472bf524e9bce956811b39ef61617a7b5e53"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ + base QuickCheck test-framework test-framework-quickcheck2 + ]; + homepage = "http://code.haskell.org/~bkomuves/"; + description = "List-like data structures with O(log(n)) random access"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "nested-sets" = callPackage ({ mkDerivation, base, containers, hspec }: mkDerivation { @@ -169877,21 +170883,20 @@ self: { }) {}; "netlink" = callPackage - ({ mkDerivation, base, bytestring, c2hs, cereal, containers - , monad-loops, unix + ({ mkDerivation, base, bytestring, cereal, containers, monad-loops + , pretty-hex, unix }: mkDerivation { pname = "netlink"; - version = "0.1"; - sha256 = "9653369535aac39f759d20ab34e49397b6d9d218e3a108de437394596bf75170"; - revision = "1"; - editedCabalFile = "a95c52a24e2db0fb3670350b3205c62d9e30bd8a596c34885cb65a3b73452294"; + version = "1.0.0.4"; + sha256 = "94061ae1809a11d564ae3a45972c3a49dfbb01054a937cc4d5a2805963260a6d"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - base bytestring cereal containers monad-loops unix + base bytestring cereal containers monad-loops pretty-hex unix ]; - libraryToolDepends = [ c2hs ]; - jailbreak = true; - homepage = "http://netlink-hs.googlecode.com/"; + executableHaskellDepends = [ base ]; + homepage = "https://github.com/Ongy/netlink-hs"; description = "Netlink communication for Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -169932,6 +170937,7 @@ self: { unordered-containers vector vector-th-unbox ]; testHaskellDepends = [ base bytestring hspec HUnit vector ]; + doCheck = false; homepage = "https://github.com/nh2/haskell-netpbm"; description = "Loading PBM, PGM, PPM image files"; license = stdenv.lib.licenses.mit; @@ -171999,8 +173005,9 @@ self: { pname = "nist-beacon"; version = "0.2.0.0"; sha256 = "fe967f892da92b9aae0cfd10be38166b0e5f915760f734df15b1bada95d9722c"; + revision = "1"; + editedCabalFile = "38a4516610bdf1d86e1204cc66297d74cd53bf6f12434d34d3c28eb016de0f22"; libraryHaskellDepends = [ base bytestring http-conduit xml ]; - jailbreak = true; homepage = "https://github.com/bstamour/haskell-nist-beacon"; description = "Haskell interface to the nist random beacon"; license = stdenv.lib.licenses.bsd3; @@ -172067,36 +173074,25 @@ self: { }) {inherit (pkgs) nix;}; "nixfromnpm" = callPackage - ({ mkDerivation, aeson, base, bytestring, classy-prelude - , containers, data-default, directory, error-list, filepath, github - , hnix, hspec, hspec-expectations, http-client-streams, io-streams - , MissingH, mtl, network-uri, optparse-applicative, parsec, shelly - , system-filepath, text, text-render, unordered-containers + ({ mkDerivation, aeson, ansi-terminal, base, bytestring + , classy-prelude, containers, curl, data-default, data-fix + , directory, hnix, lifted-base, MissingH, monad-control, mtl + , network-uri, optparse-applicative, parsec, semver-range, SHA + , shelly, system-filepath, temporary, text, text-render + , transformers, unix, unordered-containers }: mkDerivation { pname = "nixfromnpm"; - version = "0.2.1"; - sha256 = "c623621b04e5d924e7d2565c3ce618c6604a25b2755fa4e273b8fad8f62c2db8"; - isLibrary = true; + version = "0.10.1"; + sha256 = "bed09b87072dc2cc58eae01e463d2c8244e5d32aba21039daaa9e0e1af984afe"; + isLibrary = false; isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring classy-prelude containers data-default - directory error-list filepath hnix MissingH mtl network-uri - optparse-applicative parsec shelly system-filepath text text-render - unordered-containers - ]; executableHaskellDepends = [ - aeson base bytestring classy-prelude containers data-default - directory error-list filepath hnix MissingH mtl network-uri - optparse-applicative parsec shelly system-filepath text text-render - unordered-containers - ]; - testHaskellDepends = [ - aeson base bytestring classy-prelude containers data-default - directory error-list filepath github hnix hspec hspec-expectations - http-client-streams io-streams MissingH mtl network-uri - optparse-applicative parsec shelly system-filepath text text-render - unordered-containers + aeson ansi-terminal base bytestring classy-prelude containers curl + data-default data-fix directory hnix lifted-base MissingH + monad-control mtl network-uri optparse-applicative parsec + semver-range SHA shelly system-filepath temporary text text-render + transformers unix unordered-containers ]; jailbreak = true; description = "Generate nix expressions from npm packages"; @@ -173524,7 +174520,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "oeis" = callPackage + "oeis_0_3_6" = callPackage ({ mkDerivation, base, HTTP, HUnit, network, network-uri , test-framework, test-framework-hunit }: @@ -173539,6 +174535,23 @@ self: { jailbreak = true; description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "oeis" = callPackage + ({ mkDerivation, base, HTTP, HUnit, network, network-uri + , test-framework, test-framework-hunit + }: + mkDerivation { + pname = "oeis"; + version = "0.3.7"; + sha256 = "5d898a04d6117eca1250083cb8783d159302e9b5eb084878f5771916204861cf"; + libraryHaskellDepends = [ base HTTP network network-uri ]; + testHaskellDepends = [ + base HUnit test-framework test-framework-hunit + ]; + description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)"; + license = stdenv.lib.licenses.bsd3; }) {}; "off-simple" = callPackage @@ -173554,7 +174567,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "ofx" = callPackage + "ofx_0_4_0_4" = callPackage ({ mkDerivation, base, parsec, pretty, time }: mkDerivation { pname = "ofx"; @@ -173564,6 +174577,22 @@ self: { homepage = "http://www.github.com/massysett/ofx"; description = "Parser for OFX data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ofx" = callPackage + ({ mkDerivation, base, parsec, pretty, time }: + mkDerivation { + pname = "ofx"; + version = "0.4.2.0"; + sha256 = "0e22e2269f099603832f666814235051fadf92cbdec3dfacf7d1e8231ccd95f1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base parsec pretty time ]; + executableHaskellDepends = [ base parsec pretty time ]; + homepage = "http://www.github.com/massysett/ofx"; + description = "Parser for OFX data"; + license = stdenv.lib.licenses.bsd3; }) {}; "ohloh-hs" = callPackage @@ -175984,6 +177013,7 @@ self: { base data-default-class HUnit template-haskell test-framework test-framework-hunit ]; + jailbreak = true; homepage = "https://github.com/trskop/overloaded-records"; description = "Overloaded Records based on current GHC proposal"; license = stdenv.lib.licenses.bsd3; @@ -176449,6 +177479,19 @@ self: { license = "unknown"; }) {}; + "pagination" = callPackage + ({ mkDerivation, base, deepseq, exceptions, hspec, QuickCheck }: + mkDerivation { + pname = "pagination"; + version = "0.1.0"; + sha256 = "1d4312ec808e0a39f15b0f78e84b298b1ad6c608aa9a43b2476e94e5c51c771d"; + libraryHaskellDepends = [ base deepseq exceptions ]; + testHaskellDepends = [ base exceptions hspec QuickCheck ]; + homepage = "https://github.com/mrkkrp/pagination"; + description = "Framework-agnostic pagination boilerplate"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "pagure-hook-receiver" = callPackage ({ mkDerivation, base, containers, scotty, shelly, text , transformers, unix @@ -177432,6 +178475,7 @@ self: { data-accessor-transformers data-default hspec mtl pandoc pandoc-types process roman-numerals syb template-haskell yaml ]; + jailbreak = true; description = "Pandoc filter for cross-references"; license = stdenv.lib.licenses.gpl2; hydraPlatforms = stdenv.lib.platforms.none; @@ -177982,8 +179026,8 @@ self: { ({ mkDerivation, base, template-haskell, type-level }: mkDerivation { pname = "parameterized-data"; - version = "0.1.5"; - sha256 = "013322381cff9c560857fd9812ae282ba1c57412082f6479ceeed7b7aeba8efd"; + version = "0.1.6"; + sha256 = "0024e19cfffeb33cd25c6055ac3127dbd58e96f3237640b6fa788cd29a824f3b"; libraryHaskellDepends = [ base template-haskell type-level ]; homepage = "http://code.haskell.org/parameterized-data"; description = "Parameterized data library implementing lightweight dependent types"; @@ -182851,8 +183895,8 @@ self: { }: mkDerivation { pname = "phoityne-vscode"; - version = "0.0.6.0"; - sha256 = "dac6445fa1e6e4f25c31078ccdaefacbb31b22fb35612dac97f831a6893b1170"; + version = "0.0.7.0"; + sha256 = "6b209e6f85bf062d2443531661f4da5253450635f77a6f4f177768d11272651d"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -183228,8 +184272,8 @@ self: { }: mkDerivation { pname = "pinboard"; - version = "0.9.5"; - sha256 = "2a050c949bde8de92aed1e0e356f871153becce19dc08786c0f6f0530c30d71c"; + version = "0.9.6"; + sha256 = "1b999ac66e530a840b425a4656b8499eccf1928bb25dd059a09b9e14863347db"; libraryHaskellDepends = [ aeson base bytestring containers either http-client http-client-tls http-types mtl network old-locale profunctors random text time @@ -183245,6 +184289,32 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "pinboard_0_9_7" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, either, hspec + , http-client, http-client-tls, http-types, mtl, network + , profunctors, QuickCheck, random, semigroups, text, time + , transformers, unordered-containers, vector + }: + mkDerivation { + pname = "pinboard"; + version = "0.9.7"; + sha256 = "429f35da8a6c860ac2c20cfd87fe3dd01f53dbf7cfc44a24ba2f059e6d4fe681"; + libraryHaskellDepends = [ + aeson base bytestring containers either http-client http-client-tls + http-types mtl network profunctors random text time transformers + unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring containers hspec mtl QuickCheck semigroups + text time transformers unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/jonschoning/pinboard"; + description = "Access to the Pinboard API"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pinch_0_2_0_0" = callPackage ({ mkDerivation, array, base, bytestring, containers, deepseq , ghc-prim, hashable, hspec, hspec-discover, QuickCheck, text @@ -183299,8 +184369,8 @@ self: { }: mkDerivation { pname = "pinch"; - version = "0.3.0.0"; - sha256 = "aaa451f65bde78d3e9cfc2621ed78b7dab31cb7234619c5c37cc2976e1fc3d15"; + version = "0.3.0.1"; + sha256 = "985fb2c392ceedff92d46af9086b1b6cdcde88f65920e5afb1cbf7a4c52e8b53"; libraryHaskellDepends = [ array base bytestring containers deepseq ghc-prim hashable text unordered-containers vector @@ -183350,7 +184420,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pinchot" = callPackage + "pinchot_0_18_0_2" = callPackage ({ mkDerivation, base, containers, Earley, lens, ListLike , semigroups, template-haskell, transformers }: @@ -183365,6 +184435,24 @@ self: { homepage = "http://www.github.com/massysett/pinchot"; description = "Write grammars, not parsers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pinchot" = callPackage + ({ mkDerivation, base, containers, Earley, lens, ListLike + , semigroups, template-haskell, transformers + }: + mkDerivation { + pname = "pinchot"; + version = "0.18.2.0"; + sha256 = "a32dfa0aff4761bca3c9d99755814a3acc2962197dff5b07b565c77e90bb4ed6"; + libraryHaskellDepends = [ + base containers Earley lens ListLike semigroups template-haskell + transformers + ]; + homepage = "http://www.github.com/massysett/pinchot"; + description = "Write grammars, not parsers"; + license = stdenv.lib.licenses.bsd3; }) {}; "pipe-enumerator" = callPackage @@ -185122,6 +186210,28 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "pixelated-avatar-generator" = callPackage + ({ mkDerivation, base, bytestring, hspec, JuicyPixels, pureMD5 + , QuickCheck, split + }: + mkDerivation { + pname = "pixelated-avatar-generator"; + version = "0.1.0"; + sha256 = "f4fe2536605c0f1df69fd15da6007c95a28fff1b8c40d2368a120d906f85e2ef"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring JuicyPixels pureMD5 split + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base bytestring hspec JuicyPixels QuickCheck + ]; + homepage = "https://github.com/ExcaliburZero/pixelated-avatar-generator"; + description = "A library and application for generating pixelated avatars"; + license = stdenv.lib.licenses.mit; + }) {}; + "pkcs1" = callPackage ({ mkDerivation, base, bytestring, random }: mkDerivation { @@ -187325,30 +188435,30 @@ self: { "postgresql-query" = callPackage ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring - , containers, data-default, either, exceptions, file-embed + , containers, data-default, derive, either, exceptions, file-embed , haskell-src-meta, hreader, hset, inflections, monad-control , monad-logger, mtl, postgresql-simple, QuickCheck , quickcheck-assertions, quickcheck-instances, resource-pool , semigroups, tasty, tasty-hunit, tasty-quickcheck, tasty-th , template-haskell, text, th-lift, th-lift-instances, time - , transformers, transformers-base, transformers-compat + , transformers, transformers-base, transformers-compat, type-fun }: mkDerivation { pname = "postgresql-query"; - version = "2.3.0"; - sha256 = "bd3aaf1bcb3d424090962ace0b973f0b65aeee21aab44c9a1cb8c622936479d7"; + version = "3.0.1"; + sha256 = "2e9ff10732967eabc091a0f7d45a3b9777a20ae23ab3fffb8827bae646fcc1a4"; libraryHaskellDepends = [ aeson attoparsec base blaze-builder bytestring containers data-default either exceptions file-embed haskell-src-meta hreader hset inflections monad-control monad-logger mtl postgresql-simple resource-pool semigroups template-haskell text th-lift th-lift-instances time transformers transformers-base - transformers-compat + transformers-compat type-fun ]; testHaskellDepends = [ - attoparsec base inflections QuickCheck quickcheck-assertions - quickcheck-instances tasty tasty-hunit tasty-quickcheck tasty-th - text time + attoparsec base derive inflections postgresql-simple QuickCheck + quickcheck-assertions quickcheck-instances tasty tasty-hunit + tasty-quickcheck tasty-th text time ]; homepage = "https://bitbucket.org/s9gf4ult/postgresql-query"; description = "Sql interpolating quasiquote plus some kind of primitive ORM using it"; @@ -190247,6 +191357,7 @@ self: { attoparsec base bytestring containers data-default-class lens-family parsec pretty text transformers void ]; + jailbreak = true; homepage = "https://github.com/google/proto-lens"; description = "A lens-based implementation of protocol buffers in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -190285,6 +191396,7 @@ self: { base HUnit lens-family proto-lens-protoc test-framework test-framework-hunit ]; + jailbreak = true; homepage = "https://github.com/google/proto-lens"; description = "Utilities functions to proto-lens"; license = stdenv.lib.licenses.bsd3; @@ -190324,6 +191436,7 @@ self: { base bytestring containers data-default-class filepath haskell-src-exts lens-family proto-lens text ]; + jailbreak = true; description = "Protocol buffer compiler for the proto-lens library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -191114,8 +192227,8 @@ self: { ({ mkDerivation, base, filepath, hspec, template-haskell }: mkDerivation { pname = "publicsuffix"; - version = "0.20160701"; - sha256 = "18d7de6712ead0b01d8c3267e277267ac1817ef5788c0a012d9f4ddff96aeb7a"; + version = "0.20160708"; + sha256 = "6a2a246694723c81312a3963c5750b0ddd60b863b200849a9d2f9d2fe1e85a5f"; libraryHaskellDepends = [ base filepath template-haskell ]; testHaskellDepends = [ base hspec ]; homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; @@ -191880,6 +192993,54 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "purescript_0_9_2" = callPackage + ({ mkDerivation, aeson, aeson-better-errors, ansi-terminal + , ansi-wl-pprint, base, base-compat, bower-json, boxes, bytestring + , clock, containers, directory, dlist, edit-distance, file-embed + , 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 + , protolude, regex-tdfa, safe, semigroups, silently, sourcemap + , spdx, split, stm, syb, text, time, transformers + , transformers-base, transformers-compat, unordered-containers + , utf8-string, vector, wai, wai-websockets, warp, websockets + }: + mkDerivation { + pname = "purescript"; + version = "0.9.2"; + sha256 = "08a09bb101a900bf5ec3954cddfbfac11e81550d1ec92221559922f0e5b1acb3"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-better-errors ansi-terminal base base-compat bower-json + boxes bytestring clock containers directory dlist edit-distance + filepath fsnotify Glob haskeline http-types language-javascript + lifted-base monad-control monad-logger mtl parallel parsec + pattern-arrows pipes pipes-http process protolude regex-tdfa safe + semigroups sourcemap spdx split stm syb text time transformers + transformers-base transformers-compat unordered-containers + utf8-string vector + ]; + executableHaskellDepends = [ + aeson ansi-terminal ansi-wl-pprint base base-compat boxes + bytestring containers directory file-embed filepath Glob haskeline + http-types monad-logger mtl network optparse-applicative parsec + process protolude split stm text time transformers + transformers-compat utf8-string wai wai-websockets warp websockets + ]; + testHaskellDepends = [ + aeson aeson-better-errors base base-compat boxes bytestring + containers directory filepath Glob haskeline hspec hspec-discover + HUnit mtl optparse-applicative parsec process protolude silently + stm text time transformers transformers-compat utf8-string vector + ]; + homepage = "http://www.purescript.org/"; + description = "PureScript Programming Language Compiler"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "purescript-bridge" = callPackage ({ mkDerivation, base, containers, directory, filepath , generic-deriving, lens, mtl, text, transformers @@ -192468,6 +193629,77 @@ self: { }) {qtc_core = null; qtc_gui = null; qtc_network = null; qtc_opengl = null; qtc_script = null; qtc_tools = null;}; + "qtah-cpp-qt5" = callPackage + ({ mkDerivation, base, qtah-generator }: + mkDerivation { + pname = "qtah-cpp-qt5"; + version = "0.1.0"; + sha256 = "3fb79a7dbccdf84dfbde714be8f2a18cd57fdacd17463b2c72d392f8985107a8"; + libraryHaskellDepends = [ base qtah-generator ]; + homepage = "http://khumba.net/projects/qtah"; + description = "Qt bindings for Haskell - C++ library"; + license = stdenv.lib.licenses.lgpl3; + }) {}; + + "qtah-examples" = callPackage + ({ mkDerivation, base, binary, bytestring, hoppy-runtime, qtah-qt5 + }: + mkDerivation { + pname = "qtah-examples"; + version = "0.1.0"; + sha256 = "12c9a78193e5e2986e734487c94e95be5fc638204b051839a257fb60c2cddd2a"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base binary bytestring hoppy-runtime qtah-qt5 + ]; + jailbreak = true; + homepage = "http://khumba.net/projects/qtah"; + description = "Example programs for Qtah Qt bindings"; + license = stdenv.lib.licenses.lgpl3; + }) {}; + + "qtah-generator" = callPackage + ({ mkDerivation, base, containers, directory, filepath, haskell-src + , hoppy-generator, hoppy-std, mtl, process + }: + mkDerivation { + pname = "qtah-generator"; + version = "0.1.0"; + sha256 = "446d1d14e629f5b18bd4d28d3e6d1866d73147ce499a47d84f1bf91f4490126a"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base ]; + executableHaskellDepends = [ + base containers directory filepath haskell-src hoppy-generator + hoppy-std mtl process + ]; + doHaddock = false; + homepage = "http://khumba.net/projects/qtah"; + description = "Generator for Qtah Qt bindings"; + license = stdenv.lib.licenses.lgpl3; + }) {}; + + "qtah-qt5" = callPackage + ({ mkDerivation, base, binary, bytestring, hoppy-runtime, HUnit + , qtah, qtah-cpp-qt5, qtah-generator + }: + mkDerivation { + pname = "qtah-qt5"; + version = "0.1.0"; + sha256 = "9dd81185388e8f769e38e02eda9ea5a8b9d8f1c26e3dd15825b08d72385962e7"; + libraryHaskellDepends = [ + base binary bytestring hoppy-runtime qtah-cpp-qt5 qtah-generator + ]; + librarySystemDepends = [ qtah ]; + testHaskellDepends = [ base hoppy-runtime HUnit ]; + testSystemDepends = [ qtah ]; + jailbreak = true; + homepage = "http://khumba.net/projects/qtah"; + description = "Qt bindings for Haskell"; + license = stdenv.lib.licenses.lgpl3; + }) {qtah = null;}; + "quadratic-irrational" = callPackage ({ mkDerivation, arithmoi, base, containers, directory, doctest , filepath, mtl, numbers, QuickCheck, tasty, tasty-quickcheck @@ -192879,8 +194111,8 @@ self: { pname = "quickcheck-io"; version = "0.1.1"; sha256 = "a23a6e011aafd211c2521ddb9f61ffb5d256837148b5f5c35a152bdb37d6039b"; - revision = "1"; - editedCabalFile = "fbefc480103a2c6661d5e735f53aa387ae2c8b2e482ffab87955be34b9a69be6"; + revision = "2"; + editedCabalFile = "32b51923eb3a2d9be6436ce14847ec8f1fc8793c8cbf8e0af3581c38a4408409"; libraryHaskellDepends = [ base HUnit QuickCheck ]; jailbreak = true; description = "Use HUnit assertions as QuickCheck properties"; @@ -192894,12 +194126,27 @@ self: { pname = "quickcheck-io"; version = "0.1.2"; sha256 = "50275e5253dcf0c838e340fa19eb841804deb634aeedbf33f0b46a97b89bc1cd"; + revision = "1"; + editedCabalFile = "e0ffcf52d48037f25073c440a0b0f880b4a22e132915a1910c259e8cf8bd1fc3"; libraryHaskellDepends = [ base HUnit QuickCheck ]; homepage = "https://github.com/hspec/quickcheck-io#readme"; description = "Use HUnit assertions as QuickCheck properties"; license = stdenv.lib.licenses.mit; }) {}; + "quickcheck-io_0_1_3" = callPackage + ({ mkDerivation, base, HUnit, QuickCheck }: + mkDerivation { + pname = "quickcheck-io"; + version = "0.1.3"; + sha256 = "d798584e26c51e4cbb0dadd1097cf14472c917240d09fc3d9a2b74961673c8b4"; + libraryHaskellDepends = [ base HUnit QuickCheck ]; + homepage = "https://github.com/hspec/quickcheck-io#readme"; + description = "Use HUnit assertions as QuickCheck properties"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "quickcheck-poly" = callPackage ({ mkDerivation, base, haskell98, hint, MonadCatchIO-mtl , QuickCheck, regex-compat, regex-tdfa @@ -193684,7 +194931,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rainbow" = callPackage + "rainbow_0_28_0_2" = callPackage ({ mkDerivation, base, bytestring, microlens, microlens-th, process , QuickCheck, text }: @@ -193701,6 +194948,26 @@ self: { homepage = "https://www.github.com/massysett/rainbow"; description = "Print text to terminal with colors and effects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rainbow" = callPackage + ({ mkDerivation, base, bytestring, lens-simple, process, QuickCheck + , text + }: + mkDerivation { + pname = "rainbow"; + version = "0.28.0.4"; + sha256 = "829296f88be520a9a6c6de715ffa2bb926cecc0135b23f602cc4377bac4e8831"; + libraryHaskellDepends = [ + base bytestring lens-simple process text + ]; + testHaskellDepends = [ + base bytestring lens-simple process QuickCheck text + ]; + homepage = "https://www.github.com/massysett/rainbow"; + description = "Print text to terminal with colors and effects"; + license = stdenv.lib.licenses.bsd3; }) {}; "rainbow-tests" = callPackage @@ -193763,7 +195030,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rainbox" = callPackage + "rainbox_0_18_0_8" = callPackage ({ mkDerivation, base, bytestring, containers, microlens-th , QuickCheck, rainbow, tasty, tasty-quickcheck, text }: @@ -193781,6 +195048,27 @@ self: { homepage = "http://www.github.com/massysett/rainbox"; description = "Two-dimensional box pretty printing, with colors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rainbox" = callPackage + ({ mkDerivation, base, bytestring, containers, lens-simple + , QuickCheck, rainbow, tasty, tasty-quickcheck, text + }: + mkDerivation { + pname = "rainbox"; + version = "0.18.0.10"; + sha256 = "d692e95565b4ce4454536493ae4d6ba256eecf5e88e0495d156008ea76ba1b05"; + libraryHaskellDepends = [ + base bytestring containers lens-simple rainbow text + ]; + testHaskellDepends = [ + base bytestring containers lens-simple QuickCheck rainbow tasty + tasty-quickcheck text + ]; + homepage = "http://www.github.com/massysett/rainbox"; + description = "Two-dimensional box pretty printing, with colors"; + license = stdenv.lib.licenses.bsd3; }) {}; "rake" = callPackage @@ -194360,13 +195648,13 @@ self: { ({ mkDerivation, async, base, containers, foreign-store, stm }: mkDerivation { pname = "rapid"; - version = "0.1.1"; - sha256 = "f1df04a5820b77896475df4de1e3f10ecee871f8e4227809727855b8d0404825"; + version = "0.1.2"; + sha256 = "f65a4fc1560266c9e51c6efe19d2797ef4af51850b23a458167c087da4079035"; libraryHaskellDepends = [ async base containers foreign-store stm ]; homepage = "http://hub.darcs.net/esz/rapid"; - description = "GHCi background threads, hot reloading and reload-surviving values"; + description = "Rapid prototyping with GHCi: hot reloading of running components and reload-surviving values"; license = stdenv.lib.licenses.asl20; }) {}; @@ -195485,7 +196773,10 @@ self: { pname = "records"; version = "0.1.1.6"; sha256 = "c9ccd6d264867b3ad1a3405136e7fdeddbb269fddeaa3abd3120ebc7f1c2f8db"; + revision = "1"; + editedCabalFile = "3bbff6cb24271374eb00769bbf9313dfe54e1e08b8e5104df9e2e4f7df88cd07"; libraryHaskellDepends = [ base kinds type-functions ]; + jailbreak = true; homepage = "http://darcs.wolfgang.jeltsch.info/haskell/records"; description = "A flexible record system"; license = stdenv.lib.licenses.bsd3; @@ -195975,11 +197266,9 @@ self: { ({ mkDerivation, base, stm, transformers }: mkDerivation { pname = "ref-tf"; - version = "0.4"; - sha256 = "45301b1779ff25f39d04f875ddb6895dbb27cf6f7846a2e1c9c35f126cbb3d11"; + version = "0.4.0.1"; + sha256 = "fcb522c5dca437fbd0c0132c56664a71c48fe2c06b150fcfa77d3bad5ce4be0e"; libraryHaskellDepends = [ base stm transformers ]; - jailbreak = true; - homepage = "http://www.cs.drexel.edu/~mainland/"; description = "A type class for monads with references using type families"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -196308,8 +197597,8 @@ self: { }: mkDerivation { pname = "reflex-dom-colonnade"; - version = "0.3"; - sha256 = "9bf95b9933ee86f7efda769825577dd089c007b9521adfde1bdc87126c732168"; + version = "0.4"; + sha256 = "e57ddd52875bcc2835c264dbada1e19e523ac716b66bc1e198cb9949912812e3"; libraryHaskellDepends = [ base colonnade containers contravariant reflex reflex-dom semigroups vector @@ -197339,8 +198628,8 @@ self: { }: mkDerivation { pname = "rei"; - version = "0.3.5.1"; - sha256 = "f173c5574f8d81b9451add7f84c032f17283747e1b531cecaca4f9e470b5ad8f"; + version = "0.3.7"; + sha256 = "97577658fa9d9801ae3dda8ef3b75e8f59bae547b6dc7e91003381fc639d3e0c"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -197809,6 +199098,7 @@ self: { aeson base data-default-class natural-transformation remote-json scotty text transformers warp ]; + jailbreak = true; description = "Web server wrapper for remote-json"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; @@ -197875,10 +199165,9 @@ self: { ({ mkDerivation, base, containers, hashable, transformers }: mkDerivation { pname = "renderable"; - version = "0.2.0.0"; - sha256 = "8ba7f9e6f0cb9aa0b9b7e38b0280b41191d3f0303c94f44d40d60a6fca0c18f3"; + version = "0.2.0.1"; + sha256 = "d1ea5a8d2da8913700c326c3e757c8c4c8a87f1353125bbc9ea372729e04b6c5"; libraryHaskellDepends = [ base containers hashable transformers ]; - jailbreak = true; homepage = "https://github.com/schell/renderable"; description = "An API for managing renderable resources"; license = stdenv.lib.licenses.mit; @@ -198412,6 +199701,33 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "replicant" = callPackage + ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, attoparsec + , base, bytestring, containers, either, exceptions, fast-logger + , hedis, hedis-namespace, lens, lens-aeson, lifted-base + , monad-control, monad-logger, mtl, network, resourcet, stm, text + , transformers, transformers-base, websockets, wreq, wuss + }: + mkDerivation { + pname = "replicant"; + version = "0.1.0.0"; + sha256 = "6d694916312054b6525b0fc01c8fe449420fc3d8c8b327bacd77d2fcc0770644"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-pretty ansi-terminal attoparsec base bytestring + containers either exceptions fast-logger hedis hedis-namespace lens + lens-aeson lifted-base monad-control monad-logger mtl network + resourcet stm text transformers transformers-base websockets wreq + wuss + ]; + executableHaskellDepends = [ base bytestring hedis-namespace mtl ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/jamesdabbs/replicant#readme"; + description = "Initial project template from stack"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "repline" = callPackage ({ mkDerivation, base, containers, haskeline, mtl, process }: mkDerivation { @@ -200513,7 +201829,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rethinkdb" = callPackage + "rethinkdb_2_2_0_5" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, binary, bytestring , containers, data-default, doctest, mtl, network, scientific, text , time, unordered-containers, utf8-string, vector @@ -200528,10 +201844,32 @@ self: { utf8-string vector ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/atnnn/haskell-rethinkdb"; description = "A driver for RethinkDB 2.2"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rethinkdb" = callPackage + ({ mkDerivation, aeson, base, base64-bytestring, binary, bytestring + , containers, data-default, doctest, mtl, network, scientific, text + , time, unordered-containers, utf8-string, vector + }: + mkDerivation { + pname = "rethinkdb"; + version = "2.2.0.6"; + sha256 = "5afb37a760a893be64812955f1d5e4a6a45a139806bd1da9e4117af29b4c0e5e"; + libraryHaskellDepends = [ + aeson base base64-bytestring binary bytestring containers + data-default mtl network scientific text time unordered-containers + utf8-string vector + ]; + testHaskellDepends = [ base doctest ]; + homepage = "http://github.com/atnnn/haskell-rethinkdb"; + description = "A driver for RethinkDB 2.2"; + license = stdenv.lib.licenses.asl20; }) {}; "rethinkdb-client-driver_0_0_13" = callPackage @@ -201305,14 +202643,14 @@ self: { }) {}; "ring-buffer" = callPackage - ({ mkDerivation, base, mtl, primitive, QuickCheck, vector }: + ({ mkDerivation, base, exceptions, mtl, primitive, QuickCheck + , vector + }: mkDerivation { pname = "ring-buffer"; - version = "0.2.0"; - sha256 = "4b4d074fbc35267d32fe1124f8346bd5c7e39f9286514b428cb0fc0198d39428"; - revision = "1"; - editedCabalFile = "0fa00f983efef18739d3671c34e272f4a37d379de9b20d466447ab0149e8a958"; - libraryHaskellDepends = [ base mtl primitive vector ]; + version = "0.3"; + sha256 = "f7d142f4b3aedb3a18e8a63d1dcbc0be06b64fece4f73d43261cf82067b25b82"; + libraryHaskellDepends = [ base exceptions mtl primitive vector ]; testHaskellDepends = [ base QuickCheck vector ]; homepage = "http://github.com/bgamari/ring-buffer"; description = "A concurrent, mutable ring-buffer"; @@ -202774,8 +204112,8 @@ self: { }: mkDerivation { pname = "safe-exceptions"; - version = "0.1.1.0"; - sha256 = "88d978f360eef53b553d7f4520598498187f02ae843517bd1d8eac95b1e972c2"; + version = "0.1.2.0"; + sha256 = "06dbc08b55de6bf54223724248bc5b8407f49cdbd9d03aefb8d682d5603a3721"; libraryHaskellDepends = [ base deepseq exceptions transformers ]; testHaskellDepends = [ base hspec void ]; homepage = "https://github.com/fpco/safe-exceptions#readme"; @@ -204682,7 +206020,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "scientific" = callPackage + "scientific_0_3_4_8" = callPackage ({ mkDerivation, base, binary, bytestring, containers, deepseq , ghc-prim, hashable, integer-gmp, QuickCheck, smallcheck, tasty , tasty-ant-xml, tasty-hunit, tasty-quickcheck, tasty-smallcheck @@ -204703,6 +206041,30 @@ self: { homepage = "https://github.com/basvandijk/scientific"; description = "Numbers represented using scientific notation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "scientific" = callPackage + ({ mkDerivation, base, binary, bytestring, containers, deepseq + , ghc-prim, hashable, integer-gmp, QuickCheck, smallcheck, tasty + , tasty-ant-xml, tasty-hunit, tasty-quickcheck, tasty-smallcheck + , text, vector + }: + mkDerivation { + pname = "scientific"; + version = "0.3.4.9"; + sha256 = "108330662b0af9a04d7da55864211ce12008efe36614d897ba635e80670918a8"; + libraryHaskellDepends = [ + base binary bytestring containers deepseq ghc-prim hashable + integer-gmp text vector + ]; + testHaskellDepends = [ + base binary bytestring QuickCheck smallcheck tasty tasty-ant-xml + tasty-hunit tasty-quickcheck tasty-smallcheck text + ]; + homepage = "https://github.com/basvandijk/scientific"; + description = "Numbers represented using scientific notation"; + license = stdenv.lib.licenses.bsd3; }) {}; "scion" = callPackage @@ -205410,7 +206772,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) SDL2;}; - "sdl2" = callPackage + "sdl2_2_1_1" = callPackage ({ mkDerivation, base, bytestring, exceptions, linear, SDL2 , StateVar, text, transformers, vector }: @@ -205426,6 +206788,24 @@ self: { jailbreak = true; description = "Both high- and low-level bindings to the SDL library (version 2.0.3)."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) SDL2;}; + + "sdl2" = callPackage + ({ mkDerivation, base, bytestring, exceptions, linear, SDL2 + , StateVar, text, transformers, vector + }: + mkDerivation { + pname = "sdl2"; + version = "2.1.2.1"; + sha256 = "a30a40495313cc40efd88d72f89e17c18354090fa1764e8217b8ee4d9884d439"; + libraryHaskellDepends = [ + base bytestring exceptions linear StateVar text transformers vector + ]; + librarySystemDepends = [ SDL2 ]; + libraryPkgconfigDepends = [ SDL2 ]; + description = "Both high- and low-level bindings to the SDL library (version 2.0.2)."; + license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) SDL2;}; "sdl2-cairo" = callPackage @@ -205615,6 +206995,22 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "secd" = callPackage + ({ mkDerivation, base, haskeline, mtl, parsec }: + mkDerivation { + pname = "secd"; + version = "0.1.0.0"; + sha256 = "7b82d863d881d283301f73217de976db47bdf932c7ec6844a460db02ec40a09e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base mtl parsec ]; + executableHaskellDepends = [ base haskeline ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/kseo/secd#readme"; + description = "A Haskell implementation of the SECD abstract machine"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "secdh" = callPackage ({ mkDerivation, base, containers }: mkDerivation { @@ -207202,6 +208598,33 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant_0_8" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring + , bytestring-conversion, case-insensitive, directory, doctest + , filemanip, filepath, hspec, http-api-data, http-media, http-types + , mmorph, mtl, network-uri, QuickCheck, quickcheck-instances + , string-conversions, text, url, vault + }: + mkDerivation { + pname = "servant"; + version = "0.8"; + sha256 = "185f989c0cca574bb8142fe627f0b5824004aa1ccf125a580c3aeba953d80d55"; + libraryHaskellDepends = [ + aeson attoparsec base base-compat bytestring bytestring-conversion + case-insensitive http-api-data http-media http-types mmorph mtl + network-uri string-conversions text vault + ]; + testHaskellDepends = [ + aeson attoparsec base base-compat bytestring directory doctest + filemanip filepath hspec QuickCheck quickcheck-instances + string-conversions text url + ]; + homepage = "http://haskell-servant.readthedocs.org/"; + description = "A family of combinators for defining webservices APIs"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-JuicyPixels_0_1_0_0" = callPackage ({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant , servant-server, wai, warp @@ -207295,19 +208718,23 @@ self: { }) {}; "servant-aeson-specs" = callPackage - ({ mkDerivation, aeson, base, bytestring, doctest, hspec - , hspec-core, QuickCheck, servant, temporary + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, directory + , doctest, filepath, hspec, hspec-core, mockery, QuickCheck + , quickcheck-instances, random, servant, silently + , string-conversions, temporary, text }: mkDerivation { pname = "servant-aeson-specs"; - version = "0.1"; - sha256 = "ccea599ef6f218d860685db00a38de2ee87602af840b62c0004b0b18643e80a0"; + version = "0.2"; + sha256 = "3d965c6da5ee92762325dc28fb4e51138f0e9efef4251c87ae90de182b878c0f"; libraryHaskellDepends = [ - aeson base bytestring hspec QuickCheck servant + aeson aeson-pretty base bytestring directory filepath hspec + QuickCheck random servant ]; testHaskellDepends = [ - aeson base bytestring doctest hspec hspec-core QuickCheck servant - temporary + aeson aeson-pretty base bytestring directory doctest filepath hspec + hspec-core mockery QuickCheck quickcheck-instances random servant + silently string-conversions temporary text ]; jailbreak = true; homepage = "https://github.com/plow-technologies/servant-aeson-specs#readme"; @@ -207374,6 +208801,8 @@ self: { pname = "servant-blaze"; version = "0.7.1"; sha256 = "90ed1c7a22b83bee344ef3896203f3699b7633bf986ffa064752c3596c072646"; + revision = "1"; + editedCabalFile = "90e239eb13bad18f9a41521580ff97f95550db33b0404f0a3ba04593fa6dee88"; libraryHaskellDepends = [ base blaze-html http-media servant ]; homepage = "http://haskell-servant.readthedocs.org/"; description = "Blaze-html support for servant"; @@ -207386,6 +208815,8 @@ self: { pname = "servant-cassava"; version = "0.7.1"; sha256 = "385bf6187f86c0fb9ba39578eb132118d2ada5dd17f1d0abd6235e4e9113623d"; + revision = "2"; + editedCabalFile = "1bbf4a02f60f2b0d01fa94b6570ff75c1391562f13ea1a1418bd2a1227e9e37a"; libraryHaskellDepends = [ base cassava http-media servant vector ]; homepage = "http://haskell-servant.readthedocs.org/"; description = "Servant CSV content-type for cassava"; @@ -207630,6 +209061,36 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-client_0_8" = 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.8"; + sha256 = "b1099f2024e6c700f1310b25ef7f62f497a886c6859bb3172282750c6d062c2e"; + 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 + ]; + jailbreak = true; + homepage = "http://haskell-servant.readthedocs.org/"; + description = "automatical derivation of querying functions for servant webservices"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-csharp" = callPackage ({ mkDerivation, aeson, base, bytestring, directory, filepath , heredocs, http-types, lens, mtl, servant, servant-foreign @@ -207885,6 +209346,37 @@ self: { hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; + "servant-docs_0_8" = 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.8"; + sha256 = "51a5caf554e495f48147af44a98c19b48a4da89869c0586c5be9b19b120395e3"; + 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 + ]; + jailbreak = true; + homepage = "http://haskell-servant.readthedocs.org/"; + description = "generate API docs for your servant webservice"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-ede" = callPackage ({ mkDerivation, aeson, base, bytestring, ede, either, filepath , http-media, http-types, semigroups, servant, servant-server, text @@ -207969,6 +209461,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-foreign_0_8" = callPackage + ({ mkDerivation, base, hspec, http-types, lens, servant, text }: + mkDerivation { + pname = "servant-foreign"; + version = "0.8"; + sha256 = "eeec69a6d32e671b95665939bfaeeb4228af7fe05b0ba669ea1ecd70f9f653f0"; + libraryHaskellDepends = [ base http-types lens servant text ]; + testHaskellDepends = [ base hspec ]; + jailbreak = true; + description = "Helpers for generating clients for servant APIs in any programming language"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-github" = callPackage ({ mkDerivation, aeson, base, hspec, http-api-data, http-client , http-link-header, QuickCheck, servant, servant-client, text @@ -208171,12 +209677,37 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-js_0_8" = callPackage + ({ mkDerivation, base, base-compat, charset, hspec + , hspec-expectations, language-ecmascript, lens, servant + , servant-foreign, text + }: + mkDerivation { + pname = "servant-js"; + version = "0.8"; + sha256 = "dbbfe65d21e04c8d6a7b28a326e6d4e1f17a4ca2ac497e66c234dfd7abab531d"; + libraryHaskellDepends = [ + base base-compat charset lens servant servant-foreign text + ]; + testHaskellDepends = [ + base base-compat hspec hspec-expectations language-ecmascript lens + servant text + ]; + jailbreak = true; + homepage = "http://haskell-servant.readthedocs.org/"; + description = "Automatically derive javascript functions to query servant webservices"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-lucid" = callPackage ({ mkDerivation, base, http-media, lucid, servant }: mkDerivation { pname = "servant-lucid"; version = "0.7.1"; sha256 = "ec26ba7d159b09be10beacf6242f6ae1bd111e9c738bfbf3cf2f560f48e0fe40"; + revision = "1"; + editedCabalFile = "1fd84dbff6493df7e55bb6f4f6bc194f48ad7e9f63b404669139b1dd231d1cc2"; libraryHaskellDepends = [ base http-media lucid servant ]; homepage = "http://haskell-servant.readthedocs.org/"; description = "Servant support for lucid"; @@ -208210,6 +209741,35 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-mock_0_8" = callPackage + ({ mkDerivation, aeson, base, bytestring, bytestring-conversion + , hspec, hspec-wai, http-types, QuickCheck, servant, servant-server + , transformers, wai, warp + }: + mkDerivation { + pname = "servant-mock"; + version = "0.8"; + sha256 = "60c61f210a7e976f21337a93c19a08c349c346ae25a3b25e5100c4b9503fae83"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring http-types QuickCheck servant servant-server + transformers wai + ]; + executableHaskellDepends = [ + aeson base QuickCheck servant-server warp + ]; + testHaskellDepends = [ + aeson base bytestring-conversion hspec hspec-wai QuickCheck servant + servant-server wai + ]; + jailbreak = true; + homepage = "http://github.com/haskell-servant/servant"; + description = "Derive a mock server for free from your servant API types"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-pandoc_0_4_1_1" = callPackage ({ mkDerivation, base, bytestring, http-media, lens, pandoc-types , servant-docs, text, unordered-containers @@ -208688,6 +210248,43 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-server_0_8" = 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, 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.8"; + sha256 = "31bc2044922d385dacac0c17cd0d56d99a8614efd972e85474b3ad81d5a1069e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec base base-compat base64-bytestring bytestring + containers filepath http-api-data http-types 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 + ]; + jailbreak = true; + homepage = "http://haskell-servant.readthedocs.org/"; + description = "A family of combinators for defining webservices APIs and serving them"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-subscriber" = callPackage ({ mkDerivation, aeson, aeson-compat, async, attoparsec, base , base-compat, blaze-builder, blaze-html, blaze-markup, bytestring @@ -208805,6 +210402,8 @@ self: { pname = "servant-swagger"; version = "1.1"; sha256 = "cf3aed6fd51e7078e27c0ee745f2718c43058047dd0996256a920675dee9f311"; + revision = "1"; + editedCabalFile = "71194662078eb9978c49774cc45f0489bd699ea657af03fafe3996be58ac3e06"; libraryHaskellDepends = [ aeson base bytestring hspec http-media insert-ordered-containers lens QuickCheck servant swagger2 text unordered-containers @@ -208829,6 +210428,8 @@ self: { pname = "servant-swagger-ui"; version = "0.1.0.2.1.4"; sha256 = "88fee2a597f8810a7da56c15210e4019b407456e4a127fad5e9b08b2a8f41ff1"; + revision = "1"; + editedCabalFile = "d2fb00b812c0d2087ca43e38c0a5629940c3e6313b968faf05db36d4c89ff7ef"; libraryHaskellDepends = [ base blaze-markup bytestring directory file-embed filepath http-media servant servant-blaze servant-server servant-swagger @@ -208853,8 +210454,8 @@ self: { pname = "servant-yaml"; version = "0.1.0.0"; sha256 = "c917d9b046b06a9c4386f743a78142c27cf7f0ec1ad8562770ab9828f2ee3204"; - revision = "7"; - editedCabalFile = "9a296b06cf199ab8e8ff19172601c239c77d885196a258ee5f4eaac4ebe34e66"; + revision = "8"; + editedCabalFile = "134f4bb4d23eb291360e897c9f83e74f22de17918452b6de79b2044c97197c6b"; libraryHaskellDepends = [ base bytestring http-media servant yaml ]; @@ -209579,6 +211180,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "sfnt2woff" = callPackage + ({ mkDerivation, base, bytestring, filepath, optparse-applicative + , parsec, zlib + }: + mkDerivation { + pname = "sfnt2woff"; + version = "0.1.0.0"; + sha256 = "2b016d713c089de54fbdcfa9e4f6817afada937b9ae2de0fc9ea507c72ea7924"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring ]; + librarySystemDepends = [ zlib ]; + executableHaskellDepends = [ + base bytestring filepath optparse-applicative parsec + ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/kseo/sfnt2woff#readme"; + description = "A command line tool to convert TrueType/OpenType fonts to WOFF format"; + license = stdenv.lib.licenses.bsd3; + }) {inherit (pkgs) zlib;}; + "sgd" = callPackage ({ mkDerivation, base, binary, bytestring, containers, deepseq , filepath, lazy-io, logfloat, monad-par, mtl, primitive, random @@ -211122,6 +212744,7 @@ self: { base bytestring feed HTTP mime-types network-uri shellmate tagsoup text xml ]; + jailbreak = true; homepage = "https://github.com/valderman/shellmate"; description = "Extra functionality for shellmate"; license = stdenv.lib.licenses.bsd3; @@ -212542,13 +214165,12 @@ self: { }: mkDerivation { pname = "simple-sql-parser"; - version = "0.4.1"; - sha256 = "18fd27a8b274ab74a4949a1738498c0903e9e74645f40b113324263b1753e543"; + version = "0.4.2"; + sha256 = "ba720de50c82b47a90a1774e7b50365483801cfcb19e664cd184e04003ec7b04"; libraryHaskellDepends = [ base mtl parsec pretty ]; testHaskellDepends = [ base HUnit mtl parsec pretty test-framework test-framework-hunit ]; - jailbreak = true; homepage = "http://jakewheat.github.io/simple-sql-parser/"; description = "A parser for SQL queries"; license = stdenv.lib.licenses.bsd3; @@ -213029,6 +214651,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "siphon" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, colonnade + , contravariant, either, HUnit, pipes, QuickCheck, test-framework + , test-framework-hunit, test-framework-quickcheck2, text, vector + }: + mkDerivation { + pname = "siphon"; + version = "0.1"; + sha256 = "9035f961ddc57cf6f552b38a943aa9d57368dbfa7c5e5928150b3eae9140f4a6"; + libraryHaskellDepends = [ + attoparsec base bytestring colonnade contravariant pipes text + vector + ]; + testHaskellDepends = [ + base bytestring colonnade contravariant either HUnit pipes + QuickCheck test-framework test-framework-hunit + test-framework-quickcheck2 text + ]; + homepage = "https://github.com/andrewthad/colonnade#readme"; + description = "Generic types and functions for columnar encoding and decoding"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "sirkel" = callPackage ({ mkDerivation, base, binary, bytestring, containers, hashtables , haskell98, random, remote, SHA, transformers @@ -214140,8 +215785,8 @@ self: { }: mkDerivation { pname = "smsaero"; - version = "0.6"; - sha256 = "d800313950e5d9278850387c9b3795f1864a4796d25b1bc1143f3e14ffabd72f"; + version = "0.6.1"; + sha256 = "95d9bd63df306b6ed2ebee3a31c91484bcc29fa72cab77e89f55746bd03bf102"; libraryHaskellDepends = [ aeson base containers http-api-data http-client servant servant-client servant-docs text time @@ -216681,22 +218326,47 @@ self: { }) {}; "solga" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, http-types - , resourcet, text, wai, wai-extra + ({ mkDerivation, aeson, base, bytestring, containers, hashable + , hspec, hspec-wai, hspec-wai-json, http-types, QuickCheck + , resourcet, safe-exceptions, scientific, text + , unordered-containers, vector, wai, wai-extra }: mkDerivation { pname = "solga"; - version = "0.1.0.0"; - sha256 = "08eaf70e9e6c36c3b42dd60809d326e714040adfba75e43db8926562669bfd21"; + version = "0.1.0.1"; + sha256 = "4949717429b3698d619bca644fedb340b8f0eaac50e3e9b0b55007d9eb1db8ba"; libraryHaskellDepends = [ - aeson base bytestring containers http-types resourcet text wai - wai-extra + aeson base bytestring containers http-types resourcet + safe-exceptions text wai wai-extra + ]; + testHaskellDepends = [ + aeson base bytestring hashable hspec hspec-wai hspec-wai-json + http-types QuickCheck scientific text unordered-containers vector + wai wai-extra ]; homepage = "https://github.com/chpatrick/solga"; description = "Simple typesafe web routing"; license = stdenv.lib.licenses.mit; }) {}; + "solga-swagger" = callPackage + ({ mkDerivation, base, bytestring, dlist, http-types + , insert-ordered-containers, lens, mtl, solga, swagger2, text + , unordered-containers + }: + mkDerivation { + pname = "solga-swagger"; + version = "0.1.0.1"; + sha256 = "ceac56b2de41102e739301b5edf60af546e6178f139313681cb46bfb693f765f"; + libraryHaskellDepends = [ + base bytestring dlist http-types insert-ordered-containers lens mtl + solga swagger2 text unordered-containers + ]; + homepage = "https://github.com/chpatrick/solga"; + description = "Swagger generation for Solga"; + license = stdenv.lib.licenses.mit; + }) {}; + "solr" = callPackage ({ mkDerivation, base, base-prelude, bytestring , bytestring-tree-builder, case-insensitive, contravariant @@ -218558,6 +220228,30 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "stache" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, deepseq + , directory, exceptions, file-embed, filepath, hspec + , hspec-megaparsec, megaparsec, mtl, template-haskell, text + , unordered-containers, vector, yaml + }: + mkDerivation { + pname = "stache"; + version = "0.1.2"; + sha256 = "67b8e3cfd8e1d31aa3e3c518292ccaf84841bbdd08aefcf533b3b4d77686d680"; + libraryHaskellDepends = [ + aeson base bytestring containers deepseq directory exceptions + filepath megaparsec mtl template-haskell text unordered-containers + vector + ]; + testHaskellDepends = [ + aeson base bytestring containers file-embed hspec hspec-megaparsec + megaparsec text yaml + ]; + homepage = "https://github.com/stackbuilders/stache"; + description = "Mustache templates for Haskell"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "stack_0_1_3_0" = callPackage ({ mkDerivation, aeson, async, attoparsec, base, base16-bytestring , base64-bytestring, bifunctors, binary, blaze-builder, byteable @@ -219286,8 +220980,8 @@ self: { pname = "stack"; version = "1.1.2"; sha256 = "fc836b24fdeac54244fc79b6775d5edee146b7e552ad8e69596c7cc2f2b10625"; - revision = "5"; - editedCabalFile = "ae5ee2b2bf908224580455dd2ba16b1814fbf611465e9b949dcd99e78ec6722d"; + revision = "6"; + editedCabalFile = "9b8c21c5af64fe74772ea3f17e2a1fe8d295a083948e6631bbaa81f3305b2d95"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -219378,17 +221072,18 @@ self: { "stack-run" = callPackage ({ mkDerivation, ansi-terminal, async, base, bytestring, Cabal , conduit, conduit-extra, directory, filepath, MissingH - , projectroot, time + , projectroot, questioner, stm, terminal-size, time, vty }: mkDerivation { pname = "stack-run"; - version = "0.1.0.7"; - sha256 = "197c65164017482d6409fbdb31ae0933396b08530bc82faa2948000cc4ecdcad"; + version = "0.1.1.0"; + sha256 = "06fe29fe67a1fea82708b38d6ebb9752f5c4951261d6a8670ebbfbac4b6691ae"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ ansi-terminal async base bytestring Cabal conduit conduit-extra - directory filepath MissingH projectroot time + directory filepath MissingH projectroot questioner stm + terminal-size time vty ]; homepage = "https://github.com/yamadapc/stack-run"; description = "An equivalent to cabal run for stack"; @@ -219995,7 +221690,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stackage-curator" = callPackage + "stackage-curator_0_14_0" = 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 @@ -220044,6 +221739,53 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "stackage-curator" = callPackage + ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-s3, async + , base, base16-bytestring, 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-install, stm, store + , 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.1"; + sha256 = "245df3b4c16323c4896422be6eaeb5bc019c52f387399ea8ecfe52e7ad3b4ecb"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson amazonka amazonka-core amazonka-s3 async base + base16-bytestring 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 + store 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 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-curator"; + description = "Tools for curating Stackage bundles"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "stackage-install_0_1_0_3" = callPackage ({ mkDerivation, aeson, async, base, bytestring, containers , cryptohash, directory, filepath, http-client, http-client-tls @@ -220999,10 +222741,8 @@ self: { }: mkDerivation { pname = "steeloverseer"; - version = "2.0"; - sha256 = "44a62c33eb251368dfa4fd97f317c4375dc65e6d66fc2362d3c17bcca82b0abf"; - revision = "1"; - editedCabalFile = "ccc318eb672b41d63104450aa7c25947df290ac9efc7c0ae62b727ad5f5898f2"; + version = "2.0.0.1"; + sha256 = "376994767ee8afacebf05f18ad0517bf1fa7557f5c44697c3f476a575d6ea334"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -221013,6 +222753,7 @@ self: { base bytestring directory filepath fsnotify optparse-applicative regex-tdfa semigroups yaml ]; + jailbreak = true; homepage = "https://github.com/schell/steeloverseer"; description = "A file watcher and development tool"; license = stdenv.lib.licenses.bsd3; @@ -221068,8 +222809,8 @@ self: { }: mkDerivation { pname = "stgi"; - version = "1"; - sha256 = "b2d4d39dccc636ce8b65f2d4104ac0c282eeb3e3b22663eefb7249c465dc10e4"; + version = "1.0.1"; + sha256 = "2fc1cdb0a0144757dbec6090a2fc9dd7b97096802465673bef6b9ee59e87e92a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -224634,8 +226375,8 @@ self: { ({ mkDerivation, base, Cabal, containers, directory, filepath }: mkDerivation { pname = "superdoc"; - version = "0.1.2.2"; - sha256 = "ec9d79da2c20f55a426fcacac18563fe15762442a25bd460320ce01a2b6ce963"; + version = "0.1.2.3"; + sha256 = "99666b5f574c053c8c5282a89dc3473e8ce0137fa93f61100f2fd7f83ea2a6e7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -224644,7 +226385,6 @@ self: { executableHaskellDepends = [ base Cabal containers directory filepath ]; - jailbreak = true; homepage = "http://www.mathstat.dal.ca/~selinger/superdoc/"; description = "Additional documentation markup and Unicode support"; license = stdenv.lib.licenses.bsd3; @@ -226630,6 +228370,7 @@ self: { base data-default-class data-default-instances-base hspec HUnit QuickCheck ]; + jailbreak = true; homepage = "https://github.com/muesli4/table-layout"; description = "Layout text as grid or table"; license = stdenv.lib.licenses.bsd3; @@ -227189,7 +228930,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tagsoup" = callPackage + "tagsoup_0_13_10" = callPackage ({ mkDerivation, base, bytestring, containers, text }: mkDerivation { pname = "tagsoup"; @@ -227199,9 +228940,10 @@ 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_0_14" = callPackage + "tagsoup" = callPackage ({ mkDerivation, base, bytestring, containers, text }: mkDerivation { pname = "tagsoup"; @@ -227211,7 +228953,6 @@ 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-ht" = callPackage @@ -227240,6 +228981,23 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "tagsoup-megaparsec" = callPackage + ({ mkDerivation, base, hspec, megaparsec, raw-strings-qq, tagsoup + }: + mkDerivation { + pname = "tagsoup-megaparsec"; + version = "0.1.0.0"; + sha256 = "6e77efecb8188cc938194e94784b4944c76cc54443ba9c271033ec592b1bae5c"; + libraryHaskellDepends = [ base megaparsec tagsoup ]; + testHaskellDepends = [ + base hspec megaparsec raw-strings-qq tagsoup + ]; + jailbreak = true; + homepage = "https://github.com/kseo/tagsoup-megaparsec#readme"; + description = "A Tag token parser and Tag specific parsing combinators"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "tagsoup-parsec" = callPackage ({ mkDerivation, base, parsec, tagsoup }: mkDerivation { @@ -228297,12 +230055,11 @@ self: { }: mkDerivation { pname = "tasty-program"; - version = "1.0.3"; - sha256 = "1659e7651cd638cd1f7c80c0f5cd9be87358d2cc4a9c98f2f23240583e5a06a3"; + version = "1.0.5"; + sha256 = "4cb255ad5f037029cc6ae244fffdfb0ed7c65a4b0575d98ec61c067d6f5829c4"; libraryHaskellDepends = [ base deepseq directory filepath process tasty ]; - jailbreak = true; homepage = "https://github.com/jstolarek/tasty-program"; description = "Use tasty framework to test whether a program executes correctly"; license = stdenv.lib.licenses.bsd3; @@ -228358,7 +230115,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tasty-rerun" = callPackage + "tasty-rerun_1_1_5" = callPackage ({ mkDerivation, base, containers, mtl, optparse-applicative , reducers, split, stm, tagged, tasty, transformers }: @@ -228375,6 +230132,24 @@ self: { homepage = "http://github.com/ocharles/tasty-rerun"; description = "Run tests by filtering the test tree depending on the result of previous test runs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tasty-rerun" = callPackage + ({ mkDerivation, base, containers, mtl, optparse-applicative + , reducers, split, stm, tagged, tasty, transformers + }: + mkDerivation { + pname = "tasty-rerun"; + version = "1.1.6"; + sha256 = "ed33270c8a1f1576985e9907087921fd4f8fba19253fe3bfefec2d05f9799d79"; + libraryHaskellDepends = [ + base containers mtl optparse-applicative reducers split stm tagged + tasty transformers + ]; + homepage = "http://github.com/ocharles/tasty-rerun"; + description = "Run tests by filtering the test tree depending on the result of previous test runs"; + license = stdenv.lib.licenses.bsd3; }) {}; "tasty-silver_3_1_7" = callPackage @@ -228757,7 +230532,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "telegram-api" = callPackage + "telegram-api_0_4_3_0" = callPackage ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, either , filepath, hjpath, hspec, http-api-data, http-client , http-client-tls, http-media, http-types, mime-types @@ -228781,6 +230556,33 @@ 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; + }) {}; + + "telegram-api" = callPackage + ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, either + , filepath, hjpath, hspec, http-api-data, http-client + , http-client-tls, http-media, http-types, mime-types + , optparse-applicative, servant, servant-client, string-conversions + , text, transformers, utf8-string + }: + mkDerivation { + pname = "telegram-api"; + version = "0.4.3.1"; + sha256 = "b51fa07d2dfa010a467a43b2a86dc56ec7a7adaf91b379528a97b6745771dfc8"; + libraryHaskellDepends = [ + aeson base bytestring either http-api-data http-client http-media + http-types mime-types servant servant-client string-conversions + text transformers + ]; + testHaskellDepends = [ + aeson ansi-wl-pprint base filepath hjpath hspec http-client + http-client-tls http-types optparse-applicative servant + servant-client text transformers utf8-string + ]; + homepage = "http://github.com/klappvisor/haskell-telegram-api#readme"; + description = "Telegram Bot API bindings"; + license = stdenv.lib.licenses.bsd3; }) {}; "teleport" = callPackage @@ -228885,6 +230687,7 @@ self: { base bifunctors bytestring containers http-conduit mtl network regex-pcre split tagsoup text time transformers ]; + jailbreak = true; homepage = "https://github.com/phaazon/tellbot"; description = "IRC tellbot"; license = stdenv.lib.licenses.gpl3; @@ -229654,8 +231457,8 @@ self: { pname = "test-framework-quickcheck2"; version = "0.3.0.3"; sha256 = "cc96c6f30c29b16a3f7ec5c108f320a6c0f0d3ef71afff8a1cb98caf33ffe18a"; - revision = "1"; - editedCabalFile = "14fdf07c345e9460882b975851739afc2cf62f0c9930c38d0fee5b0943351638"; + revision = "2"; + editedCabalFile = "989f988d0c4356d7fc1d87c062904d02eba0637c5adba428b349aeb709d81bc0"; libraryHaskellDepends = [ base extensible-exceptions QuickCheck random test-framework ]; @@ -231245,6 +233048,8 @@ self: { pname = "text-show"; version = "3.2.2"; sha256 = "93a9479d19f303d4e8310ae8e35a8609d27ef6e443f8a4531c73bd5d1bbd4c40"; + revision = "1"; + editedCabalFile = "2d52fb92d26513d648126820f6abffa4e2971fde5565a3608982dabec0cd7152"; libraryHaskellDepends = [ array base base-compat bifunctors bytestring bytestring-builder containers generic-deriving ghc-boot ghc-prim integer-gmp nats @@ -231276,6 +233081,8 @@ self: { pname = "text-show-instances"; version = "3.2.1"; sha256 = "33433b9d15d43254e1dbca31fdf226579a77c8c12e98e76a29a566703a000c68"; + revision = "1"; + editedCabalFile = "779438a1fe229b098458abe877276c851c4fb8ccf095213d9b7018e95715e04e"; libraryHaskellDepends = [ base base-compat bifunctors binary bytestring containers directory haskeline hoopl hpc old-locale old-time pretty random semigroups @@ -231382,6 +233189,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "text-zipper-monad" = callPackage + ({ mkDerivation, base, hspec, mtl, text-zipper }: + mkDerivation { + pname = "text-zipper-monad"; + version = "0.1.0.0"; + sha256 = "39d3c7bd5b79226e477bb9fd3be1cbcadb2674969525ff2e441642e5de42756b"; + libraryHaskellDepends = [ base mtl text-zipper ]; + testHaskellDepends = [ base hspec text-zipper ]; + homepage = "https://github.com/kseo/text-zipper-monad#readme"; + description = "Monadic interface to the text-zipper package"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "text1" = callPackage ({ mkDerivation, base, binary, directory, doctest, filepath, lens , QuickCheck, semigroups, template-haskell, text @@ -232078,7 +233898,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "th-lift-instances" = callPackage + "th-lift-instances_0_1_9" = callPackage ({ mkDerivation, base, bytestring, containers, QuickCheck , template-haskell, text, th-lift, vector }: @@ -232095,6 +233915,26 @@ self: { homepage = "http://github.com/bennofs/th-lift-instances/"; description = "Lift instances for template-haskell for common data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "th-lift-instances" = callPackage + ({ mkDerivation, base, bytestring, containers, QuickCheck + , template-haskell, text, th-lift, vector + }: + mkDerivation { + pname = "th-lift-instances"; + version = "0.1.10"; + sha256 = "a3b8afd8789f508d9a421952994ff82cd33c40e99f81c85080fee07044ff2174"; + libraryHaskellDepends = [ + base bytestring containers template-haskell text th-lift vector + ]; + testHaskellDepends = [ + base bytestring containers QuickCheck template-haskell text vector + ]; + homepage = "http://github.com/bennofs/th-lift-instances/"; + description = "Lift instances for template-haskell for common data types"; + license = stdenv.lib.licenses.bsd3; }) {}; "th-orphans_0_8_2" = callPackage @@ -232460,6 +234300,33 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "thentos-cookie-session" = callPackage + ({ mkDerivation, aeson, base, bytestring, cookie, cryptonite + , digestive-functors, hspec, hspec-wai, http-types, lens, memory + , mtl, resourcet, sandi, servant, servant-server + , string-conversions, text, transformers, vault, wai, wai-extra + , wai-session + }: + mkDerivation { + pname = "thentos-cookie-session"; + version = "0.9.0"; + sha256 = "b1550fa69251a85c29f0396b6fdac937a21fe151151162e8834233284239ec77"; + libraryHaskellDepends = [ + aeson base bytestring cookie cryptonite digestive-functors lens + memory mtl resourcet sandi servant servant-server + string-conversions text transformers vault wai wai-extra + wai-session + ]; + testHaskellDepends = [ + base cookie hspec hspec-wai http-types servant-server transformers + vault wai wai-extra wai-session + ]; + jailbreak = true; + homepage = "https://github.com/liqd/thentos"; + description = "All-in-one session handling for servant-based frontends"; + license = "AGPL"; + }) {}; + "theoremquest" = callPackage ({ mkDerivation, base, HTTP, json, utf8-string }: mkDerivation { @@ -236339,8 +238206,8 @@ self: { }: mkDerivation { pname = "tsvsql"; - version = "0.2.0.0"; - sha256 = "ebbdba194d7bdb248631e96de0635d773b0fac6adb979722dbb257848b367382"; + version = "0.2.1.0"; + sha256 = "5c8a29e01fcf8e3d2cc0a9cb4e2e0635791d2f2aa8c248f7eadc5c093ebfd8e3"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -238107,6 +239974,7 @@ self: { version = "0.0.0.3"; sha256 = "c7f8bcc8bfc2b87f7ce4e48ce422c3a8cfe2d4807c4edacca638c2a55715523b"; libraryHaskellDepends = [ base type-level ]; + jailbreak = true; homepage = "http://darcs.wolfgang.jeltsch.info/haskell/type-equality-check"; description = "Type equality check"; license = stdenv.lib.licenses.bsd3; @@ -238132,7 +240000,10 @@ self: { pname = "type-functions"; version = "0.2.0.3"; sha256 = "55ed9016a713a74f40c9b6c148b6d12cb749a5b3cbfcd55dd0e3fef1c3e446ef"; + revision = "1"; + editedCabalFile = "cbcb6222648cd677de48ef9592d2f2387f8b3fef59b9a5411e3864c561c795ab"; libraryHaskellDepends = [ base kinds ]; + jailbreak = true; homepage = "http://darcs.wolfgang.jeltsch.info/haskell/type-functions"; description = "Emulation of type-level functions"; license = stdenv.lib.licenses.bsd3; @@ -238182,8 +240053,8 @@ self: { ({ mkDerivation, base, syb, template-haskell }: mkDerivation { pname = "type-level"; - version = "0.2.4"; - sha256 = "3bbdca0507187b72675dc182bb05da68d7e080693fa1ffe9fb961f693c81f7b1"; + version = "0.3.0"; + sha256 = "9976bcbbca38b208a6aa45e1046f82dc369175809d0b16850f65a026d66c890f"; libraryHaskellDepends = [ base syb template-haskell ]; homepage = "http://code.haskell.org/type-level"; description = "Type-level programming library"; @@ -238901,6 +240772,7 @@ self: { test-framework-hunit test-framework-quickcheck2 test-framework-th time tzdata unix vector ]; + jailbreak = true; preConfigure = "export TZDIR=${pkgs.tzdata}/share/zoneinfo"; homepage = "https://github.com/nilcons/haskell-tz"; description = "Efficient time zone handling"; @@ -238928,6 +240800,7 @@ self: { test-framework-hunit test-framework-quickcheck2 test-framework-th time tzdata unix vector ]; + jailbreak = true; preConfigure = "export TZDIR=${pkgs.tzdata}/share/zoneinfo"; homepage = "https://github.com/nilcons/haskell-tz"; description = "Efficient time zone handling"; @@ -242429,7 +244302,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "uuid-orphans" = callPackage + "uuid-orphans_1_3_11_1" = callPackage ({ mkDerivation, base, safecopy, text, uuid-types, web-routes }: mkDerivation { pname = "uuid-orphans"; @@ -242443,6 +244316,22 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "uuid-orphans" = callPackage + ({ mkDerivation, base, safecopy, text, th-lift, uuid-types + , web-routes + }: + mkDerivation { + pname = "uuid-orphans"; + version = "1.4.1"; + sha256 = "3261ff63bc6d4dd8365272b16e02801b48a14c5ac46cd46428ef169b4d7c1da6"; + libraryHaskellDepends = [ + base safecopy text th-lift uuid-types web-routes + ]; + description = "Orphan instances for the UUID datatype"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "uuid-quasi" = callPackage ({ mkDerivation, base, template-haskell, uuid }: mkDerivation { @@ -242859,6 +244748,18 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "validity" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "validity"; + version = "0.1.0.0"; + sha256 = "f4ca276d10484547ce104a63d0bdb35df60d18a185c5a5db426f97c9e4f69aa2"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/NorfairKing/validity#readme"; + description = "Validity typeclass"; + license = stdenv.lib.licenses.mit; + }) {}; + "value-supply" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -242967,14 +244868,13 @@ self: { ({ mkDerivation, base, hspec, QuickCheck, time, transformers }: mkDerivation { pname = "varying"; - version = "0.5.0.0"; - sha256 = "e41ea4ffce851b55736bac29a3aefe505979eb5e7c9d5794e5db892cb39e1cba"; + version = "0.5.0.2"; + sha256 = "86b2972408ebb8e99ca1194c43ac68a6a51ce33b0e4ee627b42b1646bfd758fe"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base time transformers ]; + libraryHaskellDepends = [ base transformers ]; executableHaskellDepends = [ base time transformers ]; testHaskellDepends = [ base hspec QuickCheck time transformers ]; - jailbreak = true; homepage = "https://github.com/schell/varying"; description = "FRP through value streams and monadic splines"; license = stdenv.lib.licenses.mit; @@ -245238,8 +247138,8 @@ self: { }: mkDerivation { pname = "wai-app-file-cgi"; - version = "3.1.2"; - sha256 = "c6d035173d100d15f0d9e4aa360f49ec1d3347c7aef72f3b1e34f556974a5eb4"; + version = "3.1.3"; + sha256 = "6fce1db57f84faef811e8e08f48fc6bef6daa136a61dc8abc03b83908955af3b"; libraryHaskellDepends = [ array attoparsec attoparsec-conduit base blaze-builder blaze-html bytestring case-insensitive conduit conduit-extra containers @@ -245252,6 +247152,7 @@ self: { base bytestring conduit conduit-extra directory doctest filepath hspec HTTP http-types unix wai warp ]; + jailbreak = true; homepage = "http://www.mew.org/~kazu/proj/mighttpd/"; description = "File/CGI/Rev Proxy App of WAI"; license = stdenv.lib.licenses.bsd3; @@ -246901,14 +248802,14 @@ self: { "wai-http2-extra" = callPackage ({ mkDerivation, auto-update, base, bytestring, containers, doctest - , wai, warp, word8 + , http-types, wai, warp, word8 }: mkDerivation { pname = "wai-http2-extra"; - version = "0.0.0"; - sha256 = "594243350fc71df4007c9a7c804dce2cea08349ca316689fe27655b7f0f7d70d"; + version = "0.0.1"; + sha256 = "3f35e563d8232bad3d83050b8ec1946d6b3c33646468ded94b999d9c972513f6"; libraryHaskellDepends = [ - auto-update base bytestring containers wai warp word8 + auto-update base bytestring containers http-types wai warp word8 ]; testHaskellDepends = [ base doctest ]; homepage = "http://github.com/yesodweb/wai"; @@ -248498,7 +250399,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-transformers" = callPackage + "wai-transformers_0_0_6" = callPackage ({ mkDerivation, base, exceptions, transformers, wai , wai-websockets, websockets }: @@ -248511,6 +250412,22 @@ self: { ]; description = "Simple parameterization of Wai's Application type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-transformers" = callPackage + ({ mkDerivation, base, exceptions, transformers, wai + , wai-websockets, websockets + }: + mkDerivation { + pname = "wai-transformers"; + version = "0.0.7"; + sha256 = "1a1801a2048eb84808a09e44cb899d6cc689948619eeeea005e312ea5a2fe32c"; + libraryHaskellDepends = [ + base exceptions transformers wai wai-websockets websockets + ]; + description = "Simple parameterization of Wai's Application type"; + license = stdenv.lib.licenses.bsd3; }) {}; "wai-util" = callPackage @@ -251258,10 +253175,9 @@ self: { ({ mkDerivation, base, primitive, vector }: mkDerivation { pname = "webrtc-vad"; - version = "0.1.0.2"; - sha256 = "d3ad3ba58ca2389102be09bda8bca69a525c766ada824898cf833d1993368293"; + version = "0.1.0.3"; + sha256 = "89cc6691d314c8c2ae7801bf56e1cca0252617536af4ac94acb92ad6d560d453"; libraryHaskellDepends = [ base primitive vector ]; - jailbreak = true; description = "Easy voice activity detection"; license = stdenv.lib.licenses.mit; }) {}; @@ -252087,6 +254003,25 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {kernel32 = null; ws2_32 = null;}; + "wire-streams" = callPackage + ({ mkDerivation, base, binary, bytestring, Cabal + , cabal-test-quickcheck, cereal, io-streams, QuickCheck + }: + mkDerivation { + pname = "wire-streams"; + version = "0.0.2.0"; + sha256 = "2b03e9c88767a371d59ca5d941db3c3f5b11ba1b8a20606732a706acebe6dd4f"; + libraryHaskellDepends = [ + base binary bytestring cereal io-streams + ]; + testHaskellDepends = [ + base binary bytestring Cabal cabal-test-quickcheck cereal + io-streams QuickCheck + ]; + description = "Use cereal or binary with io-streams"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "wiring" = callPackage ({ mkDerivation, base, hspec, mtl, QuickCheck, template-haskell , transformers @@ -254719,7 +256654,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xlsx" = callPackage + "xlsx_0_2_2_2" = callPackage ({ mkDerivation, base, base64-bytestring, binary-search, bytestring , conduit, containers, data-default, extra, filepath, HUnit, lens , mtl, network-uri, old-locale, raw-strings-qq, safe, smallcheck @@ -254744,6 +256679,33 @@ self: { homepage = "https://github.com/qrilka/xlsx"; description = "Simple and incomplete Excel file parser/writer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "xlsx" = callPackage + ({ mkDerivation, base, base64-bytestring, binary-search, bytestring + , conduit, containers, data-default, Diff, extra, filepath, groom + , lens, mtl, network-uri, old-locale, raw-strings-qq, safe + , smallcheck, tasty, tasty-hunit, tasty-smallcheck, text, time + , transformers, vector, xml-conduit, zip-archive, zlib + }: + mkDerivation { + pname = "xlsx"; + version = "0.2.3"; + sha256 = "c1170f83d96c4fd500b2a09aa016d6e52668cabf5442e5ba7aa5c64b0e817563"; + libraryHaskellDepends = [ + base base64-bytestring binary-search bytestring conduit containers + data-default extra filepath lens mtl network-uri old-locale safe + text time transformers vector xml-conduit zip-archive zlib + ]; + testHaskellDepends = [ + base bytestring containers Diff groom lens mtl raw-strings-qq + smallcheck tasty tasty-hunit tasty-smallcheck time vector + xml-conduit + ]; + homepage = "https://github.com/qrilka/xlsx"; + description = "Simple and incomplete Excel file parser/writer"; + license = stdenv.lib.licenses.mit; }) {}; "xlsx-tabular_0_1_0_0" = callPackage @@ -255327,13 +257289,12 @@ self: { }) {}; "xml-extractors" = callPackage - ({ mkDerivation, base, mtl, safe, transformers, xml }: + ({ mkDerivation, base, mtl, transformers, xml }: mkDerivation { pname = "xml-extractors"; - version = "0.4.0.1"; - sha256 = "38ffa6ab354dcaddbdd1ca4c187418715fd7d7de77abc4861c9840c88bce1e79"; - libraryHaskellDepends = [ base mtl safe transformers xml ]; - jailbreak = true; + version = "0.4.0.2"; + sha256 = "aa2705b0ac32a4a88b50f377fa3d8dc7f506c8503d97136bf92bcb3863a07f47"; + libraryHaskellDepends = [ base mtl transformers xml ]; homepage = "https://github.com/holmisen/xml-extractors"; description = "Extension to the xml package to extract data from parsed xml"; license = stdenv.lib.licenses.bsd3; @@ -263723,23 +265684,20 @@ self: { }) {}; "yesod-worker" = callPackage - ({ mkDerivation, base, containers, fast-logger, monad-control - , monad-logger, persistent, resourcet, stm, template-haskell - , transformers, transformers-base, yesod, yesod-core + ({ mkDerivation, base, blaze-markup, bytestring, containers, hedis + , keenser, thyme, yesod }: mkDerivation { pname = "yesod-worker"; - version = "0.0.1"; - sha256 = "6dde8ff89cd2a4832c6f24172e3694b5a4f8767ad2315c6734b58a0e61e095e7"; + version = "0.1.0.0"; + sha256 = "f8076954537f74a098644422a3193d184308559cd35bc980f2ab7663b5f8cada"; libraryHaskellDepends = [ - base containers fast-logger monad-control monad-logger persistent - resourcet stm template-haskell transformers transformers-base yesod - yesod-core + base blaze-markup bytestring containers hedis keenser thyme yesod ]; - jailbreak = true; - homepage = "https://github.com/jamesdabbs/yesod-worker"; - description = "Drop-in(ish) background worker system for Yesod apps"; - license = stdenv.lib.licenses.gpl3; + testHaskellDepends = [ base ]; + homepage = "https://github.com/jamesdabbs/yesod-worker#readme"; + description = "Initial project template from stack"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; }) {}; @@ -264351,8 +266309,8 @@ self: { }: mkDerivation { pname = "yst"; - version = "0.5.1"; - sha256 = "603afd33877c086221b0914463bb92943df49aecc9e4a7fb58f4f35386199f71"; + version = "0.5.1.1"; + sha256 = "08e775b23abda46a504e0c3787bdb89e47a0e9aee0984582298f2f73a6c163ac"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -264360,7 +266318,6 @@ self: { HStringTemplate lucid old-locale old-time pandoc parsec scientific split text time unordered-containers yaml ]; - jailbreak = true; homepage = "http://github.com/jgm/yst"; description = "Builds a static website from templates and data in YAML or CSV files"; license = "GPL"; From 6af0f57f91f5b87e10186f7d26a345cab565478c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 11 Jul 2016 10:00:50 +0200 Subject: [PATCH 090/123] haskell-binary: update to latest version --- pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix | 2 +- pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix | 2 +- pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix | 4 ++-- pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix index b4ea8fd95b9..7707733a930 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_4_0; + binary = self.binary_0_8_4_1; 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 2507f9d6aed..740035f0bb6 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_4_0; process = self.process_1_2_3_0; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_8_4_1; 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 980f4159bc1..aca043e240b 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_4_0; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_4_1; }; # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'. - cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_4_0; }); + cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_4_1; }); # 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 b48f9cfd33c..39652da5a5d 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_4_0; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_4_1; }; # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'. - cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_4_0; }); + cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_4_1; }); # https://github.com/tibbe/hashable/issues/85 hashable = dontCheck super.hashable; From 4b8c31d981c0bf35c860bf44df04bcdbb5865685 Mon Sep 17 00:00:00 2001 From: Luca Bruno Date: Thu, 14 Jul 2016 22:05:15 +0100 Subject: [PATCH 091/123] gnome3: enable X libinput by default See https://bugzilla.gnome.org/show_bug.cgi?id=764257#c12 --- nixos/modules/services/x11/desktop-managers/gnome3.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix index 27ec65c3d8e..89b515a6e27 100644 --- a/nixos/modules/services/x11/desktop-managers/gnome3.nix +++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix @@ -122,6 +122,7 @@ in { services.dbus.packages = mkIf config.services.printing.enable [ pkgs.system-config-printer ]; services.colord.enable = mkDefault true; hardware.bluetooth.enable = mkDefault true; + services.xserver.libinput.enable = mkDefault true; # for controlling touchpad settings via gnome control center fonts.fonts = [ pkgs.dejavu_fonts pkgs.cantarell_fonts ]; From 0ad8d0b127bfbbb03c61776f4f913cd7a6b93f18 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Fri, 15 Jul 2016 06:39:10 +0200 Subject: [PATCH 092/123] pypi2nix: should be using python35 --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 56c435ae27b..0217c3451df 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5857,7 +5857,7 @@ in pythonDocs = recurseIntoAttrs (callPackage ../development/interpreters/python/docs {}); - pypi2nix = callPackage ../development/tools/pypi2nix { python = python27; }; + pypi2nix = callPackage ../development/tools/pypi2nix { python = python35; }; svg2tikz = python27Packages.svg2tikz; From 5e685121e4befa2b5d83b991faf4221b37243531 Mon Sep 17 00:00:00 2001 From: Bryan Gardiner Date: Thu, 14 Jul 2016 18:53:52 -0700 Subject: [PATCH 093/123] hoppy, qtah: add myself as maintainer --- .../haskell-modules/configuration-hackage2nix.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 976baab0aa4..b213780ff4b 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -90,6 +90,14 @@ package-maintainers: khumba: - goatee - goatee-gtk + - hoppy-docs + - hoppy-generator + - hoppy-runtime + - hoppy-std + - qtah-cpp-qt5 + - qtah-examples + - qtah-generator + - qtah-qt5 psibi: - path-pieces - persistent From bed2a14afaf720ca9f2c0f6a747ca8f8490ddbab Mon Sep 17 00:00:00 2001 From: John Ericson Date: Sat, 9 Jul 2016 00:01:49 -0700 Subject: [PATCH 094/123] makeRustPlatform: Remove `self` argument --- pkgs/development/compilers/rust/default.nix | 2 +- pkgs/top-level/all-packages.nix | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/compilers/rust/default.nix b/pkgs/development/compilers/rust/default.nix index 44b9471784c..adabdd71a1d 100644 --- a/pkgs/development/compilers/rust/default.nix +++ b/pkgs/development/compilers/rust/default.nix @@ -2,7 +2,7 @@ targets ? [], targetToolchains ? [], targetPatches ? [] }: let - rustPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./bootstrap.nix {}) rustPlatform); + rustPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./bootstrap.nix {})); in rec { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0217c3451df..1f468d3e10b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5428,9 +5428,9 @@ in cargo = rust.cargo; rustc = rust.rustc; - rustPlatform = recurseIntoAttrs (makeRustPlatform rust rustPlatform); + rustPlatform = recurseIntoAttrs (makeRustPlatform rust); - makeRustPlatform = rust: self: + makeRustPlatform = rust: lib.fix (self: let callPackage = newScope self; in { @@ -5441,7 +5441,7 @@ in buildRustPackage = callPackage ../build-support/rust { inherit rust; }; - }; + }); rustfmt = callPackage ../development/tools/rust/rustfmt { }; rustracer = callPackage ../development/tools/rust/racer { }; From 5eaeb97a4629cf81821fb02f607b92739d8c2a3f Mon Sep 17 00:00:00 2001 From: Alexey Shmalko Date: Fri, 15 Jul 2016 01:57:52 +0300 Subject: [PATCH 095/123] qbittorrent: fix build --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1f468d3e10b..700e7420a6b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14154,7 +14154,7 @@ in qbittorrent = qt5.callPackage ../applications/networking/p2p/qbittorrent { boost = boost; - libtorrentRasterbar = libtorrentRasterbar; + libtorrentRasterbar = libtorrentRasterbar_1_09; }; eiskaltdcpp = callPackage ../applications/networking/p2p/eiskaltdcpp { lua5 = lua5_1; }; From 3d4a32835e831bd9b8aa40edeb24392bb50b0b54 Mon Sep 17 00:00:00 2001 From: Markus Hauck Date: Fri, 15 Jul 2016 10:44:04 +0200 Subject: [PATCH 096/123] scalafmt: 0.2.5 -> 0.2.11 --- pkgs/development/tools/scalafmt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/scalafmt/default.nix b/pkgs/development/tools/scalafmt/default.nix index 0a4855bdcb8..e434f381067 100644 --- a/pkgs/development/tools/scalafmt/default.nix +++ b/pkgs/development/tools/scalafmt/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, unzip, jre }: stdenv.mkDerivation rec { - version = "0.2.5"; + version = "0.2.11"; baseName = "scalafmt"; name = "${baseName}-${version}"; src = fetchurl { url = "https://github.com/olafurpg/scalafmt/releases/download/v${version}/${baseName}.tar.gz"; - sha256 = "07l95xdwgdbdfa91pg1sds82aw3c60gxzdcvdhhhk6a7zwrl73cp"; + sha256 = "044n00mhrdxij1kc8wplvni7pf8lnninxrsm9v41gicbk73cm2q8"; }; unpackPhase = "tar xvzf $src"; From 55eb18d212b7828e366f234585e64c18b84a36a9 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 15 Jul 2016 12:02:22 +0200 Subject: [PATCH 097/123] Add some more info to the nixos-version manpage --- nixos/doc/manual/man-nixos-version.xml | 91 ++++++++++++-------------- 1 file changed, 43 insertions(+), 48 deletions(-) diff --git a/nixos/doc/manual/man-nixos-version.xml b/nixos/doc/manual/man-nixos-version.xml index db7440977c9..615d74f9090 100644 --- a/nixos/doc/manual/man-nixos-version.xml +++ b/nixos/doc/manual/man-nixos-version.xml @@ -10,7 +10,7 @@ nixos-version - show the version of nixpkgs NixOS was built from + show the NixOS version @@ -23,58 +23,52 @@ Description -This command describes the version of nixpkgs used to build -NixOS. +This command shows the version of the currently active NixOS +configuration. For example: -By default the output includes: - - - The NixOS release - Number of commits since the release - Git SHA of the released commit - Codename of the NixOS release - - - -Example - -Here is an example output, and corresponding information: $ nixos-version 16.03.1011.6317da4 (Emu) - - - - - - Attribute - Value - - - - - NixOS Release - 16.03 - - - Commit Count - 1011 - - - Commit SHA - 6317da4 - - - Release Codename - Emu - - - - - - +The version consists of the following elements: + + + + 16.03 + The NixOS release, indicating the year and month + in which it was released (e.g. March 2016). + + + + 1011 + The number of commits in the Nixpkgs Git + repository between the start of the release branch and the commit + from which this version was built. This ensures that NixOS + versions are monotonically increasing. It is + git when the current NixOS configuration was + built from a checkout of the Nixpkgs Git repository rather than + from a NixOS channel. + + + + 6317da4 + The first 7 characters of the commit in the + Nixpkgs Git repository from which this version was + built. + + + + Emu + The code name of the NixOS release. The first + letter of the code name indicates that this is the N'th stable + NixOS release; for example, Emu is the fifth + release. + + + + + @@ -89,7 +83,8 @@ NixOS. - The output will be the full hash of the git commit + Show the full SHA1 hash of the Git commit from which this + configuration was built, e.g. $ nixos-version --hash 6317da40006f6bc2480c6781999c52d88dde2acf From 2ad0a84751c64ca30e06ea3d591660b841a3778f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Fri, 15 Jul 2016 12:41:56 +0200 Subject: [PATCH 098/123] Revert "openssh: Use the default privilege separation dir (/var/empty)" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit a927709a35cee56f878f0f57a932e1a6e2ebe23b because it doesn't build: $ nix-build -A openssh ... mkdir /nix/store/yl2xap8n1by3dqxgc4rmrc4s753676a3-openssh-7.2p2/libexec (umask 022 ; ./mkinstalldirs /var/empty) mkdir /var mkdir: cannot create directory '/var': Permission denied mkdir /var/empty mkdir: cannot create directory '/var/empty': No such file or directory make: *** [Makefile:304: install-files] Error 1 builder for ‘/nix/store/ifygp4mqpv7l8cgp0njp8w7lmrl6brpp-openssh-7.2p2.drv’ failed with exit code 2 --- pkgs/tools/networking/openssh/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/tools/networking/openssh/default.nix b/pkgs/tools/networking/openssh/default.nix index 8d893c6a57f..64b9fe98278 100644 --- a/pkgs/tools/networking/openssh/default.nix +++ b/pkgs/tools/networking/openssh/default.nix @@ -66,6 +66,11 @@ stdenv.mkDerivation rec { ++ optional stdenv.isDarwin "--disable-libutil" ++ optional (!linkOpenssl) "--without-openssl"; + preConfigure = '' + configureFlagsArray+=("--with-privsep-path=$out/empty") + mkdir -p $out/empty + ''; + enableParallelBuilding = true; postInstall = '' From c30d4e07c5e4c0e39da1da56aa7ddfaa59674691 Mon Sep 17 00:00:00 2001 From: Alexei Robyn Date: Tue, 12 Jul 2016 16:34:46 +1000 Subject: [PATCH 099/123] libvirt: revert to full systemd dependency Fixes issue with virt-manager failing to list 'USB Host Devices' and 'PCI Host Devices' with the error "Connection does not support host device enumeration". --- pkgs/development/libraries/libvirt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix index 300f50d9044..12b4459cbca 100644 --- a/pkgs/development/libraries/libvirt/default.nix +++ b/pkgs/development/libraries/libvirt/default.nix @@ -24,14 +24,14 @@ stdenv.mkDerivation rec { gettext libtasn1 libgcrypt yajl libxslt xhtml1 perlPackages.XMLXPath curl libpcap ] ++ stdenv.lib.optionals stdenv.isLinux [ - libpciaccess devicemapper lvm2 utillinux systemd.udev.lib libcap_ng + libpciaccess devicemapper lvm2 utillinux systemd libcap_ng libnl numad numactl xen zfs ] ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv gmp ]; preConfigure = stdenv.lib.optionalString stdenv.isLinux '' - PATH=${iproute}/sbin:${iptables}/sbin:${ebtables}/sbin:${lvm2}/sbin:${systemd.udev.bin}/bin:$PATH + PATH=${iproute}/sbin:${iptables}/sbin:${ebtables}/sbin:${lvm2}/sbin:${systemd}/bin:$PATH substituteInPlace configure \ --replace 'as_dummy="/bin:/usr/bin:/usr/sbin"' 'as_dummy="${numad}/bin"' '' + '' From a4adca78efc44b9084a3eafb5f8534448919a07e Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 12 Jul 2016 20:46:54 +0200 Subject: [PATCH 100/123] monodevelop: use makeLibraryPath in wrapper (fixes #16844) --- pkgs/applications/editors/monodevelop/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/monodevelop/default.nix b/pkgs/applications/editors/monodevelop/default.nix index 69d6a3b2789..cdf1daabea7 100644 --- a/pkgs/applications/editors/monodevelop/default.nix +++ b/pkgs/applications/editors/monodevelop/default.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { 2a3,5 > export MONO_GAC_PREFIX=${gnome-sharp}:${gtk-sharp}:\$MONO_GAC_PREFIX > export PATH=${mono}/bin:\$PATH - > export LD_LIBRARY_PATH=${glib}/lib:${gnome.libgnomeui}/lib:${gnome.gnome_vfs}/lib:${gnome-sharp}/lib:${gtk-sharp}/lib:${gtk-sharp.gtk}/lib:\$LD_LIBRARY_PATH + > export LD_LIBRARY_PATH=${stdenv.lib.makeLibraryPath [ glib gnome.libgnomeui gnome.gnome_vfs gnome-sharp gtk-sharp gtk-sharp.gtk ]}:\$LD_LIBRARY_PATH > EOF done From 4075c10a59af455db2012beb313453662f09dad0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Fri, 15 Jul 2016 14:45:23 +0200 Subject: [PATCH 101/123] jenkins: move .war file from $out to $out/lib/jenkins.war Fixes #14137, also known as: $ nix-shell -p jenkins bash: source: /nix/store/ln1yw6c2v8bb2cjqfr1z5aqcssw054wa-jenkins-2.3: cannot execute binary file [nix-shell exited with error] The problem is that jenkins.war is not installed inside the directory $out, but rather _as the file_ $out. Fix it by moving the file to $out/lib/jenkins.war. While at it, move buildCommand so that the "meta" section is at the end of the expression (standard style), and quote shell variables. --- .../services/continuous-integration/jenkins/default.nix | 2 +- .../tools/continuous-integration/jenkins/default.nix | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/continuous-integration/jenkins/default.nix b/nixos/modules/services/continuous-integration/jenkins/default.nix index ae3f186c1d0..7da49fa0aaa 100644 --- a/nixos/modules/services/continuous-integration/jenkins/default.nix +++ b/nixos/modules/services/continuous-integration/jenkins/default.nix @@ -154,7 +154,7 @@ in { ''; script = '' - ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins} --httpListenAddress=${cfg.listenAddress} \ + ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins}/lib/jenkins.war --httpListenAddress=${cfg.listenAddress} \ --httpPort=${toString cfg.port} \ --prefix=${cfg.prefix} \ ${concatStringsSep " " cfg.extraOptions} diff --git a/pkgs/development/tools/continuous-integration/jenkins/default.nix b/pkgs/development/tools/continuous-integration/jenkins/default.nix index 827fb4e05a5..cbc2b76d8ac 100644 --- a/pkgs/development/tools/continuous-integration/jenkins/default.nix +++ b/pkgs/development/tools/continuous-integration/jenkins/default.nix @@ -8,6 +8,12 @@ stdenv.mkDerivation rec { url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war"; sha256 = "0x59dbvh6y25ki5jy51djbfbhf8g2j3yd9f3n66f7bkdfw8p78g1"; }; + + buildCommand = '' + mkdir -p "$out/lib" + cp "$src" "$out/lib/jenkins.war" + ''; + meta = with stdenv.lib; { description = "An extendable open source continuous integration server"; homepage = http://jenkins-ci.org; @@ -15,6 +21,4 @@ stdenv.mkDerivation rec { platforms = platforms.all; maintainers = [ maintainers.coconnor ]; }; - - buildCommand = "cp $src $out"; } From a66400631474d87a57478e91808ef156f82d0813 Mon Sep 17 00:00:00 2001 From: Tristan Helmich Date: Thu, 2 Jun 2016 17:54:02 +0200 Subject: [PATCH 102/123] sonarr: init at 2.0.0.4230 --- pkgs/servers/sonarr/default.nix | 33 +++++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 35 insertions(+) create mode 100644 pkgs/servers/sonarr/default.nix diff --git a/pkgs/servers/sonarr/default.nix b/pkgs/servers/sonarr/default.nix new file mode 100644 index 00000000000..91e292944a6 --- /dev/null +++ b/pkgs/servers/sonarr/default.nix @@ -0,0 +1,33 @@ +{ stdenv, fetchurl, mono, libmediainfo, sqlite, makeWrapper, ... }: + +stdenv.mkDerivation rec { + name = "sonarr-${version}"; + version = "2.0.0.4230"; + + src = fetchurl { + url = "http://download.sonarr.tv/v2/master/mono/NzbDrone.master.${version}.mono.tar.gz"; + sha256 = "16nx0v5hpqlwna2hzpcpzvm7qc361yjxbqnwz5bfnnkb0h7ik5m6"; + }; + + buildInputs = [ + makeWrapper + ]; + + installPhase = '' + mkdir -p $out/bin + cp -r * $out/bin/ + + makeWrapper "${mono}/bin/mono" $out/bin/NzbDrone \ + --add-flags "$out/bin/NzbDrone.exe" \ + --prefix LD_LIBRARY_PATH ':' "${sqlite.out}/lib" \ + --prefix LD_LIBRARY_PATH ':' "${libmediainfo}/lib" + ''; + + meta = { + description = "Smart PVR for newsgroup and bittorrent users"; + homepage = https://sonarr.tv/; + license = stdenv.lib.licenses.gpl3; + maintainers = [ stdenv.lib.maintainers.fadenb ]; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3d848de8a6d..e1b18829c95 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3474,6 +3474,8 @@ in solvespace = callPackage ../applications/graphics/solvespace { }; + sonarr = callPackage ../servers/sonarr { }; + sonata = callPackage ../applications/audio/sonata { inherit (python3Packages) buildPythonApplication python isPy3k dbus pygobject3 mpd2; }; From ed466b7fef35e7e6ce4eeb80075e9b76151ff029 Mon Sep 17 00:00:00 2001 From: Tristan Helmich Date: Thu, 2 Jun 2016 21:00:00 +0200 Subject: [PATCH 103/123] sonarr service: initial service --- nixos/modules/module-list.nix | 1 + nixos/modules/services/misc/sonarr.nix | 44 ++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 nixos/modules/services/misc/sonarr.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 04ea1c14e29..ab9e50c20fc 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -258,6 +258,7 @@ ./services/misc/ripple-data-api.nix ./services/misc/rogue.nix ./services/misc/siproxd.nix + ./services/misc/sonarr.nix ./services/misc/spice-vdagentd.nix ./services/misc/subsonic.nix ./services/misc/sundtek.nix diff --git a/nixos/modules/services/misc/sonarr.nix b/nixos/modules/services/misc/sonarr.nix new file mode 100644 index 00000000000..6d96daa6c3d --- /dev/null +++ b/nixos/modules/services/misc/sonarr.nix @@ -0,0 +1,44 @@ +{ config, pkgs, lib, mono, ... }: + +with lib; + +let + cfg = config.services.sonarr; +in +{ + options = { + services.sonarr = { + enable = mkEnableOption "Sonarr"; + }; + }; + + config = mkIf cfg.enable { + systemd.services.sonarr = { + description = "Sonarr"; + after = [ "network.target" ]; + wantedBy = [ "multi-user.target" ]; + preStart = '' + test -d /var/lib/sonarr/ || { + echo "Creating sonarr data directory in /var/lib/sonarr/" + mkdir -p /var/lib/sonarr/ + } + chown -R sonarr /var/lib/sonarr/ + chmod 0700 /var/lib/sonarr/ + ''; + + serviceConfig = { + Type = "simple"; + User = "sonarr"; + Group = "nogroup"; + PermissionsStartOnly = "true"; + ExecStart = "${pkgs.sonarr}/bin/NzbDrone --no-browser"; + Restart = "on-failure"; + }; + }; + + users.extraUsers.sonarr = { + home = "/var/lib/sonarr"; + }; + + }; +} From e228023b14541c4d0cccba397fe9b647aca61832 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 15 Jul 2016 13:21:58 +0200 Subject: [PATCH 104/123] linux_grsec_nixos: fix build The grsec patch fails to apply cleanly when combined with the hiddev CVE patch (added in dde259dfb5a0787b28e260da7575079bbabad6c3). To fix this and future problems, we set all our patches explicitly rather than inherit from the base kernel. --- pkgs/top-level/all-packages.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3d848de8a6d..26702c79370 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11186,7 +11186,12 @@ in linux_grsec_nixos = callPackage ../build-support/grsecurity { inherit (lib) overrideDerivation; kernel = callPackage ../os-specific/linux/kernel/linux-grsecurity.nix { - inherit (self.linux_4_5) kernelPatches; + kernelPatches = with self.kernelPatches; [ bridge_stp_helper qat_common_Makefile ] + ++ lib.optionals ((platform.kernelArch or null) == "mips") + [ kernelPatches.mips_fpureg_emu + kernelPatches.mips_fpu_sigill + kernelPatches.mips_ext3_n32 + ]; }; grsecPatch = self.kernelPatches.grsecurity_testing; kernelPatches = [ self.kernelPatches.grsecurity_nixos_kmod ]; From 8d4fc3c375081d523a47709f5fd09f275b6b973a Mon Sep 17 00:00:00 2001 From: mimadrid Date: Fri, 15 Jul 2016 17:01:41 +0200 Subject: [PATCH 105/123] shotwell: 0.22.0 -> 0.23.2 --- pkgs/applications/graphics/shotwell/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/graphics/shotwell/default.nix b/pkgs/applications/graphics/shotwell/default.nix index 513b1a49198..e52eb045ffb 100644 --- a/pkgs/applications/graphics/shotwell/default.nix +++ b/pkgs/applications/graphics/shotwell/default.nix @@ -1,17 +1,19 @@ { fetchurl, stdenv, m4, glibc, gtk3, libexif, libgphoto2, libsoup, libxml2, vala, sqlite -, webkitgtk24x, pkgconfig, gnome3, gst_all_1, which, udev, libgudev, libraw, glib, json_glib +, webkitgtk, pkgconfig, gnome3, gst_all_1, which, udev, libgudev, libraw, glib, json_glib , gettext, desktop_file_utils, lcms2, gdk_pixbuf, librsvg, makeWrapper , gnome_doc_utils, hicolor_icon_theme }: # for dependencies see http://www.yorba.org/projects/shotwell/install/ stdenv.mkDerivation rec { - version = "0.22.0"; + version = "${major}.${minor}"; + major = "0.23"; + minor = "2"; name = "shotwell-${version}"; src = fetchurl { - url = "mirror://gnome/sources/shotwell/0.22/${name}.tar.xz"; - sha256 = "0cgqaaikrb10plhf6zxbgqy32zqpiwyi9dpx3g8yr261q72r5c81"; + url = "mirror://gnome/sources/shotwell/${major}/${name}.tar.xz"; + sha256 = "d52caae4e3204f2f78e2eb828d955848ea6fef5c91d3ac6e9eb0b185c0490b39"; }; NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/glib-2.0 -I${glib.out}/lib/glib-2.0/include"; @@ -35,7 +37,7 @@ stdenv.mkDerivation rec { ''; - buildInputs = [ m4 glibc gtk3 libexif libgphoto2 libsoup libxml2 vala sqlite webkitgtk24x + buildInputs = [ m4 glibc gtk3 libexif libgphoto2 libsoup libxml2 vala sqlite webkitgtk pkgconfig gst_all_1.gstreamer gst_all_1.gst-plugins-base gnome3.libgee which udev libgudev gnome3.gexiv2 hicolor_icon_theme libraw json_glib gettext desktop_file_utils glib lcms2 gdk_pixbuf librsvg From 8c2d8884013e6d8e929b35ba46e85e27cdb0ad33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Fri, 15 Jul 2016 16:57:16 +0200 Subject: [PATCH 106/123] jenkins: move $out/{lib => webapps}/jenkins.war As pointed out by @danbst, the tomcat NixOS module expects packages listed in services.tomcat.webapps to either be direct .war file paths or have .war files inside a "webapps" directory. Commit 4075c10a59af455db2012beb313453662f09dad0 ("jenkins: move .war file from $out to $out/lib/jenkins.war") broke jenkins + tomcat. Fix it by moving jenkins.war to $out/webapps/. --- .../services/continuous-integration/jenkins/default.nix | 2 +- .../tools/continuous-integration/jenkins/default.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/continuous-integration/jenkins/default.nix b/nixos/modules/services/continuous-integration/jenkins/default.nix index 7da49fa0aaa..4edbbf59a42 100644 --- a/nixos/modules/services/continuous-integration/jenkins/default.nix +++ b/nixos/modules/services/continuous-integration/jenkins/default.nix @@ -154,7 +154,7 @@ in { ''; script = '' - ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins}/lib/jenkins.war --httpListenAddress=${cfg.listenAddress} \ + ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins}/webapps/jenkins.war --httpListenAddress=${cfg.listenAddress} \ --httpPort=${toString cfg.port} \ --prefix=${cfg.prefix} \ ${concatStringsSep " " cfg.extraOptions} diff --git a/pkgs/development/tools/continuous-integration/jenkins/default.nix b/pkgs/development/tools/continuous-integration/jenkins/default.nix index cbc2b76d8ac..e7355d167d9 100644 --- a/pkgs/development/tools/continuous-integration/jenkins/default.nix +++ b/pkgs/development/tools/continuous-integration/jenkins/default.nix @@ -10,8 +10,8 @@ stdenv.mkDerivation rec { }; buildCommand = '' - mkdir -p "$out/lib" - cp "$src" "$out/lib/jenkins.war" + mkdir -p "$out/webapps" + cp "$src" "$out/webapps/jenkins.war" ''; meta = with stdenv.lib; { From 411bd972ab3e108e505e46274cac5b1995a5f331 Mon Sep 17 00:00:00 2001 From: Langston Barrett Date: Fri, 15 Jul 2016 17:35:53 +0200 Subject: [PATCH 107/123] readme: add wiki deprecation notice (#16925) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c3187f20462..237ec72223c 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ For pull-requests, please rebase onto nixpkgs `master`. * [Documentation (Nix Expression Language chapter)](https://nixos.org/nix/manual/#ch-expression-language) * [Manual (How to write packages for Nix)](https://nixos.org/nixpkgs/manual/) * [Manual (NixOS)](https://nixos.org/nixos/manual/) -* [Nix Wiki](https://nixos.org/wiki/) +* [Nix Wiki](https://nixos.org/wiki/) (deprecated, see milestone ["Move the Wiki!"](https://github.com/NixOS/nixpkgs/issues?q=is%3Aopen+is%3Aissue+milestone%3A%22Move+the+wiki%21%22)) * [Continuous package builds for unstable/master](https://hydra.nixos.org/jobset/nixos/trunk-combined) * [Continuous package builds for 16.03 release](https://hydra.nixos.org/jobset/nixos/release-16.03) * [Tests for unstable/master](https://hydra.nixos.org/job/nixos/trunk-combined/tested#tabs-constituents) From 8856cfa619b1508d3a969842c2803e5450573618 Mon Sep 17 00:00:00 2001 From: mimadrid Date: Fri, 15 Jul 2016 18:23:26 +0200 Subject: [PATCH 108/123] xarchiver: 0.5.4 -> 0.5.4.6 --- pkgs/tools/archivers/xarchiver/default.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/pkgs/tools/archivers/xarchiver/default.nix b/pkgs/tools/archivers/xarchiver/default.nix index ea59cb8319e..507e777a7c3 100644 --- a/pkgs/tools/archivers/xarchiver/default.nix +++ b/pkgs/tools/archivers/xarchiver/default.nix @@ -1,18 +1,20 @@ -{ stdenv, fetchurl, gtk2, pkgconfig, intltool }: +{ stdenv, fetchFromGitHub, gtk, pkgconfig, intltool }: stdenv.mkDerivation rec { - version = "0.5.4"; + version = "0.5.4.6"; name = "xarchiver-${version}"; - src = fetchurl { - url = "mirror://sourceforge/xarchiver/${name}.tar.bz2"; - sha256 = "1x1f8m71cvv2p1364rz99iqs2caxj7yrb46aikz6xigwg4wsfgz6"; + src = fetchFromGitHub { + owner = "ib"; + repo = "xarchiver"; + rev = "${name}"; + sha256 = "1w6b4cchd4prswrn981a7bkq44ad51xm2qiwlpzy43ynql14q877"; }; - buildInputs = [ gtk2 pkgconfig intltool ]; + buildInputs = [ gtk pkgconfig intltool ]; meta = { - description = "GTK+2 only frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)"; + description = "GTK+ 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.domenkozar ]; license = stdenv.lib.licenses.gpl2; From 3223ef5df509cba22e5a9d77b33d4438ecd22a67 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Fri, 15 Jul 2016 18:37:15 +0200 Subject: [PATCH 109/123] Remove a definitely rendering-dependent LibreOffice test (only the equality part); hopefully should fix the build --- pkgs/applications/office/libreoffice/default.nix | 2 ++ pkgs/applications/office/libreoffice/still.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/applications/office/libreoffice/default.nix b/pkgs/applications/office/libreoffice/default.nix index 9c1e1b78990..63af5babca2 100644 --- a/pkgs/applications/office/libreoffice/default.nix +++ b/pkgs/applications/office/libreoffice/default.nix @@ -124,6 +124,8 @@ in stdenv.mkDerivation rec { sed -e /CppunitTest_sd_tiledrendering/d -i sd/Module_sd.mk # one more fragile test? sed -e '/CPPUNIT_TEST(testTdf96536);/d' -i sw/qa/extras/uiwriter/uiwriter.cxx + # rendering-dependent test + sed -e '/CPPUNIT_ASSERT_EQUAL(11148L, pOleObj->GetLogicRect().getWidth());/d ' -i sc/qa/unit/subsequent_filters-test.cxx ''; makeFlags = "SHELL=${bash}/bin/bash"; diff --git a/pkgs/applications/office/libreoffice/still.nix b/pkgs/applications/office/libreoffice/still.nix index b8ad900fb14..eadf4135630 100644 --- a/pkgs/applications/office/libreoffice/still.nix +++ b/pkgs/applications/office/libreoffice/still.nix @@ -124,6 +124,8 @@ in stdenv.mkDerivation rec { sed -e /CppunitTest_sd_tiledrendering/d -i sd/Module_sd.mk # one more fragile test? sed -e '/CPPUNIT_TEST(testTdf96536);/d' -i sw/qa/extras/uiwriter/uiwriter.cxx + # rendering-dependent test + sed -e '/CPPUNIT_ASSERT_EQUAL(11148L, pOleObj->GetLogicRect().getWidth());/d ' -i sc/qa/unit/subsequent_filters-test.cxx ''; makeFlags = "SHELL=${bash}/bin/bash"; From cfc0a5415b935fb50241ab1b571771c2f793695c Mon Sep 17 00:00:00 2001 From: obadz Date: Fri, 15 Jul 2016 20:43:42 +0200 Subject: [PATCH 110/123] Revert "fontconfig: fix etc priority" This reverts commit 1e53d4a7776acbf61f42c094c103652c8068ad64. Closes #16983 cc @vcunat @ericsagnes @dezgeg --- .../config/fonts/fontconfig-ultimate.nix | 153 +++++----- nixos/modules/config/fonts/fontconfig.nix | 262 +++++++++--------- .../libraries/fontconfig/default.nix | 1 + .../libraries/fontconfig/make-fonts-conf.xsl | 2 + 4 files changed, 202 insertions(+), 216 deletions(-) diff --git a/nixos/modules/config/fonts/fontconfig-ultimate.nix b/nixos/modules/config/fonts/fontconfig-ultimate.nix index 47d7cc5924d..02568f9de51 100644 --- a/nixos/modules/config/fonts/fontconfig-ultimate.nix +++ b/nixos/modules/config/fonts/fontconfig-ultimate.nix @@ -3,84 +3,6 @@ with lib; let fcBool = x: if x then "true" else "false"; - cfg = config.fonts.fontconfig.ultimate; - fontconfigUltimateConf = pkgs.writeText "ultimate-conf" '' - - - - - ${optionalString (!cfg.allowBitmaps) '' - - - - - false - - - - ''} - - ${optionalString cfg.allowType1 '' - - - - - - Type 1 - - - - - ''} - - - - - ${fcBool cfg.useEmbeddedBitmaps} - - - - - - - ${fcBool cfg.forceAutohint} - - - - - - - ${fcBool cfg.renderMonoTTFAsBitmap} - - - - - ''; - confPkg = - let version = pkgs.fontconfig.configVersion; - in pkgs.runCommand "font-ultimate-conf" {} '' - mkdir -p $out/etc/fonts/{,${version}/}conf.d/ - - cp ${fontconfigUltimateConf} \ - $out/etc/fonts/conf.d/52-fontconfig-ultimate.conf - - cp ${fontconfigUltimateConf} \ - $out/etc/fonts/${version}/conf.d/52-fontconfig-ultimate.conf - - ${optionalString (cfg.substitutions != "none") '' - cp ${pkgs.fontconfig-ultimate.confd}/etc/fonts/presets/${cfg.substitutions}/*.conf \ - $out/etc/fonts/conf.d/ - cp ${pkgs.fontconfig-ultimate.confd}/etc/fonts/presets/${cfg.substitutions}/*.conf \ - $out/etc/fonts/${version}/conf.d/ - ''} - - ln -s ${pkgs.fontconfig-ultimate.confd}/etc/fonts/conf.d/*.conf \ - $out/etc/fonts/conf.d/ - - ln -s ${pkgs.fontconfig-ultimate.confd}/etc/fonts/conf.d/*.conf \ - $out/etc/fonts/${version}/conf.d/ - ''; - in { @@ -193,11 +115,78 @@ in }; - config = mkIf (config.fonts.fontconfig.enable && cfg.enable) { + config = + let ultimate = config.fonts.fontconfig.ultimate; + fontconfigUltimateConf = '' + + + - fonts.fontconfig.confPkgs = [ confPkg ]; - - environment.variables = cfg.rendering; + ${optionalString (!ultimate.allowBitmaps) '' + + + + + false + + + + ''} + + ${optionalString ultimate.allowType1 '' + + + + + + Type 1 + + + + + ''} + + + + + ${fcBool ultimate.useEmbeddedBitmaps} + + + + + + + ${fcBool ultimate.forceAutohint} + + + + + + + ${fcBool ultimate.renderMonoTTFAsBitmap} + + + + ${optionalString (ultimate.substitutions != "none") '' + + ${pkgs.fontconfig-ultimate.confd}/etc/fonts/presets/${ultimate.substitutions} + ''} + + ${pkgs.fontconfig-ultimate.confd}/etc/fonts/conf.d + + + ''; + in mkIf (config.fonts.fontconfig.enable && ultimate.enable) { + + environment.etc."fonts/conf.d/52-fontconfig-ultimate.conf" = { + text = fontconfigUltimateConf; + }; + + environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/52-fontconfig-ultimate.conf" = { + text = fontconfigUltimateConf; + }; + + environment.variables = ultimate.rendering; }; diff --git a/nixos/modules/config/fonts/fontconfig.nix b/nixos/modules/config/fonts/fontconfig.nix index fcf5add4519..1eaebe4b2bb 100644 --- a/nixos/modules/config/fonts/fontconfig.nix +++ b/nixos/modules/config/fonts/fontconfig.nix @@ -2,121 +2,6 @@ with lib; -let cfg = config.fonts.fontconfig; - fcBool = x: "" + (if x then "true" else "false") + ""; - renderConf = pkgs.writeText "render-conf" '' - - - - - - - - ${fcBool cfg.hinting.enable} - - - ${fcBool cfg.hinting.autohint} - - - hint${cfg.hinting.style} - - - ${fcBool cfg.antialias} - - - ${cfg.subpixel.rgba} - - - lcd${cfg.subpixel.lcdfilter} - - - - ${optionalString (cfg.dpi != 0) '' - - - ${toString cfg.dpi} - - - ''} - - - ''; - genericAliasConf = - let genDefault = fonts: name: - optionalString (fonts != []) '' - - ${name} - - ${concatStringsSep "" - (map (font: '' - ${font} - '') fonts)} - - - ''; - in - pkgs.writeText "generic-alias-conf" '' - - - - - - ${genDefault cfg.defaultFonts.sansSerif "sans-serif"} - - ${genDefault cfg.defaultFonts.serif "serif"} - - ${genDefault cfg.defaultFonts.monospace "monospace"} - - - ''; - cacheConf = let - cache = fontconfig: pkgs.makeFontsCache { inherit fontconfig; fontDirectories = config.fonts.fonts; }; - in - pkgs.writeText "cache-conf" '' - - - - - ${concatStringsSep "\n" (map (font: "${font}") config.fonts.fonts)} - - ${cache pkgs.fontconfig} - ${optionalString (pkgs.stdenv.isx86_64 && cfg.cache32Bit) '' - ${cache pkgs.pkgsi686Linux.fontconfig} - ''} - - ''; - userConf = pkgs.writeText "user-conf" '' - - - - fontconfig/conf.d - fontconfig/fonts.conf - - ''; - fontsConf = pkgs.makeFontsConf { fontconfig = pkgs.fontconfig_210; fontDirectories = config.fonts.fonts; }; - confPkg = - let version = pkgs.fontconfig.configVersion; - in pkgs.runCommand "fontconfig-conf" {} '' - mkdir -p $out/etc/fonts/{,${version}/}conf.d - - ln -s ${fontsConf} $out/etc/fonts/fonts.conf - - ln -s ${pkgs.fontconfig.out}/etc/fonts/fonts.conf $out/etc/fonts/${version}/fonts.conf - ln -s ${pkgs.fontconfig.out}/etc/fonts/conf.d/* $out/etc/fonts/${version}/conf.d/ - - ln -s ${renderConf} $out/etc/fonts/conf.d/10-nixos-rendering.conf - ln -s ${genericAliasConf} $out/etc/fonts/conf.d/60-nixos-generic-alias.conf - - ln -s ${cacheConf} $out/etc/fonts/${version}/conf.d/00-nixos.conf - - ln -s ${renderConf} $out/etc/fonts/${version}/conf.d/10-nixos-rendering.conf - ln -s ${genericAliasConf} $out/etc/fonts/${version}/conf.d/30-nixos-generic-alias.conf - - ${optionalString cfg.includeUserConf - "ln -s ${userConf} $out/etc/fonts/${version}/conf.d/99-user.conf"} - - ''; -in { options = { @@ -136,15 +21,6 @@ in ''; }; - confPkgs = mkOption { - internal = true; - type = with types; listOf path; - default = [ ]; - description = '' - Fontconfig configuration packages. - ''; - }; - antialias = mkOption { type = types.bool; default = true; @@ -267,17 +143,135 @@ in }; - config = mkIf cfg.enable { - fonts.fontconfig.confPkgs = [ confPkg ]; + config = + let fontconfig = config.fonts.fontconfig; + fcBool = x: "" + (if x then "true" else "false") + ""; + renderConf = '' + + + - environment.etc.fonts.source = - let fontConf = pkgs.symlinkJoin { - name = "fontconfig-etc"; - paths = cfg.confPkgs; - }; - in "${fontConf}/etc/fonts/"; + + + + ${fcBool fontconfig.hinting.enable} + + + ${fcBool fontconfig.hinting.autohint} + + + hint${fontconfig.hinting.style} + + + ${fcBool fontconfig.antialias} + + + ${fontconfig.subpixel.rgba} + + + lcd${fontconfig.subpixel.lcdfilter} + + - environment.systemPackages = [ pkgs.fontconfig ]; - }; + ${optionalString (fontconfig.dpi != 0) '' + + + ${toString fontconfig.dpi} + + + ''} + + + ''; + genericAliasConf = '' + + + + + + ${optionalString (fontconfig.defaultFonts.sansSerif != []) '' + + sans-serif + + ${concatStringsSep "\n" + (map (font: "${font}") + fontconfig.defaultFonts.sansSerif)} + + + ''} + ${optionalString (fontconfig.defaultFonts.serif != []) '' + + serif + + ${concatStringsSep "\n" + (map (font: "${font}") + fontconfig.defaultFonts.serif)} + + + ''} + ${optionalString (fontconfig.defaultFonts.monospace != []) '' + + monospace + + ${concatStringsSep "\n" + (map (font: "${font}") + fontconfig.defaultFonts.monospace)} + + + ''} + + + ''; + in mkIf fontconfig.enable { + + # Fontconfig 2.10 backward compatibility + + # Bring in the default (upstream) fontconfig configuration, only for fontconfig 2.10 + environment.etc."fonts/fonts.conf".source = + pkgs.makeFontsConf { fontconfig = pkgs.fontconfig_210; fontDirectories = config.fonts.fonts; }; + + environment.etc."fonts/conf.d/10-nixos-rendering.conf".text = renderConf; + environment.etc."fonts/conf.d/60-nixos-generic-alias.conf".text = genericAliasConf; + + # Versioned fontconfig > 2.10. Take shared fonts.conf from fontconfig. + # Otherwise specify only font directories. + environment.etc."fonts/${pkgs.fontconfig.configVersion}/fonts.conf".source = + "${pkgs.fontconfig.out}/etc/fonts/fonts.conf"; + + environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/00-nixos.conf".text = + let + cache = fontconfig: pkgs.makeFontsCache { inherit fontconfig; fontDirectories = config.fonts.fonts; }; + in '' + + + + + ${concatStringsSep "\n" (map (font: "${font}") config.fonts.fonts)} + + ${cache pkgs.fontconfig} + ${optionalString (pkgs.stdenv.isx86_64 && config.fonts.fontconfig.cache32Bit) '' + ${cache pkgs.pkgsi686Linux.fontconfig} + ''} + + ''; + + environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/10-nixos-rendering.conf".text = renderConf; + environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/60-nixos-generic-alias.conf".text = genericAliasConf; + + environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/99-user.conf" = { + enable = fontconfig.includeUserConf; + text = '' + + + + fontconfig/conf.d + fontconfig/fonts.conf + + ''; + }; + + environment.systemPackages = [ pkgs.fontconfig ]; + + }; } diff --git a/pkgs/development/libraries/fontconfig/default.nix b/pkgs/development/libraries/fontconfig/default.nix index f18ea5948f1..6acf1ebce29 100644 --- a/pkgs/development/libraries/fontconfig/default.nix +++ b/pkgs/development/libraries/fontconfig/default.nix @@ -68,6 +68,7 @@ stdenv.mkDerivation rec { cd "$out/etc/fonts" rm conf.d/{50-user,51-local}.conf "${libxslt.bin}/bin/xsltproc" --stringparam fontDirectories "${fontbhttf}" \ + --stringparam fontconfig "$out" \ --stringparam fontconfigConfigVersion "${configVersion}" \ --path $out/share/xml/fontconfig \ ${./make-fonts-conf.xsl} $out/etc/fonts/fonts.conf \ diff --git a/pkgs/development/libraries/fontconfig/make-fonts-conf.xsl b/pkgs/development/libraries/fontconfig/make-fonts-conf.xsl index dddbbe9e516..b59fcd0187b 100644 --- a/pkgs/development/libraries/fontconfig/make-fonts-conf.xsl +++ b/pkgs/development/libraries/fontconfig/make-fonts-conf.xsl @@ -28,6 +28,8 @@ /var/cache/fontconfig + + /etc/fonts/conf.d /etc/fonts//conf.d From 73ec6bea2c7eefaae930fcbe1f2780f62722038f Mon Sep 17 00:00:00 2001 From: Anthony Cowley Date: Fri, 15 Jul 2016 17:17:35 -0400 Subject: [PATCH 111/123] octave: add arpack, libwebp, and darwin compat This follows on from PR #16965 for qrupdate and PR #16968 for fltk. WIth these, the added explicit dependencies on arpack (to support the octave `eigs` function) and `libwebp`, and not pulling X11 things, octave works properly on darwin. --- pkgs/development/interpreters/octave/default.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/development/interpreters/octave/default.nix b/pkgs/development/interpreters/octave/default.nix index e302f9e55cb..68365b27a44 100644 --- a/pkgs/development/interpreters/octave/default.nix +++ b/pkgs/development/interpreters/octave/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull , libsndfile, libX11, graphicsmagick, pcre, pkgconfig, mesa, fltk -, fftw, fftwSinglePrec, zlib, curl, qrupdate, openblas +, fftw, fftwSinglePrec, zlib, curl, qrupdate, openblas, arpack, libwebp , qt ? null, qscintilla ? null, ghostscript ? null, llvm ? null, hdf5 ? null,glpk ? null , suitesparse ? null, gnuplot ? null, jdk ? null, python ? null }: @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { buildInputs = [ gfortran readline ncurses perl flex texinfo qhull libX11 graphicsmagick pcre pkgconfig mesa fltk zlib curl openblas libsndfile - fftw fftwSinglePrec qrupdate ] + fftw fftwSinglePrec qrupdate arpack libwebp ] ++ (stdenv.lib.optional (qt != null) qt) ++ (stdenv.lib.optional (qscintilla != null) qscintilla) ++ (stdenv.lib.optional (ghostscript != null) ghostscript) @@ -38,9 +38,10 @@ stdenv.mkDerivation rec { ++ (stdenv.lib.optional (jdk != null) jdk) ++ (stdenv.lib.optional (gnuplot != null) gnuplot) ++ (stdenv.lib.optional (python != null) python) + ++ (stdenv.lib.optionals (!stdenv.isDarwin) [mesa libX11]) ; - doCheck = true; + doCheck = !stdenv.isDarwin; enableParallelBuilding = true; @@ -50,7 +51,9 @@ stdenv.mkDerivation rec { "--with-blas=openblas" "--with-lapack=openblas" ] - ++ stdenv.lib.optional openblas.blas64 "--enable-64"; + ++ stdenv.lib.optional openblas.blas64 "--enable-64" + ++ stdenv.lib.optionals stdenv.isDarwin ["--with-x=no"] + ; # Keep a copy of the octave tests detailed results in the output # derivation, because someone may care @@ -67,6 +70,6 @@ stdenv.mkDerivation rec { homepage = http://octave.org/; license = stdenv.lib.licenses.gpl3Plus; maintainers = with stdenv.lib.maintainers; [viric raskin]; - platforms = with stdenv.lib.platforms; linux; + platforms = with stdenv.lib.platforms; linux ++ darwin; }; } From bed7aba2f0799a8e38ea0f82ce393f69542cc7af Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Sat, 16 Jul 2016 00:11:41 +0200 Subject: [PATCH 112/123] elm: 0.17 -> 0.17.1 --- pkgs/development/compilers/elm/default.nix | 2 +- .../compilers/elm/packages/elm-compiler.nix | 14 ++++----- .../compilers/elm/packages/elm-make.nix | 11 +++---- .../compilers/elm/packages/elm-package.nix | 29 ++++++++++--------- .../elm/packages/elm-reactor-elm.nix | 16 +++++----- .../compilers/elm/packages/elm-reactor.nix | 23 ++++++++------- .../compilers/elm/packages/elm-repl.nix | 11 +++---- .../compilers/elm/packages/release.nix | 2 +- pkgs/development/compilers/elm/update-elm.rb | 16 +++++----- 9 files changed, 66 insertions(+), 58 deletions(-) diff --git a/pkgs/development/compilers/elm/default.nix b/pkgs/development/compilers/elm/default.nix index 08f69ba8776..950caeedf53 100644 --- a/pkgs/development/compilers/elm/default.nix +++ b/pkgs/development/compilers/elm/default.nix @@ -40,7 +40,7 @@ let EOF '' + lib.concatStrings cmds; - hsPkgs = haskell.packages.ghc7103.override { + hsPkgs = haskell.packages.ghc801.override { overrides = self: super: let hlib = haskell.lib; elmRelease = import ./packages/release.nix { inherit (self) callPackage; }; diff --git a/pkgs/development/compilers/elm/packages/elm-compiler.nix b/pkgs/development/compilers/elm/packages/elm-compiler.nix index 8bebdf4315a..dc2a0a12138 100644 --- a/pkgs/development/compilers/elm/packages/elm-compiler.nix +++ b/pkgs/development/compilers/elm/packages/elm-compiler.nix @@ -3,15 +3,15 @@ , fetchgit, filemanip, filepath, HUnit, indents , language-ecmascript, language-glsl, mtl, parsec, pretty, process , QuickCheck, stdenv, test-framework, test-framework-hunit -, test-framework-quickcheck2, text, union-find, wl-pprint +, test-framework-quickcheck2, text, union-find }: mkDerivation { pname = "elm-compiler"; - version = "0.17"; + version = "0.17.1"; src = fetchgit { url = "https://github.com/elm-lang/elm-compiler"; - sha256 = "1vx4jp20nj4s41zsqnwyh80dvg7b7kd9fh6agl99v1xx9d3i6ws1"; - rev = "c9c7e72c424a13255f8ee84c719f7ef48b689c1a"; + sha256 = "17y0jlii81mnjywknblcv1nfja51slmwrhz9x8w144b0sblcj0if"; + rev = "e44deafaf9cbf3749484070f267f03a368711adb"; }; isLibrary = true; isExecutable = true; @@ -19,7 +19,7 @@ mkDerivation { aeson aeson-pretty ansi-terminal ansi-wl-pprint base binary bytestring containers directory edit-distance filepath indents language-ecmascript language-glsl mtl parsec pretty process text - union-find wl-pprint + union-find ]; executableHaskellDepends = [ aeson base binary directory filepath process text @@ -29,10 +29,10 @@ mkDerivation { bytestring containers directory edit-distance filemanip filepath HUnit indents language-ecmascript language-glsl mtl parsec pretty process QuickCheck test-framework test-framework-hunit - test-framework-quickcheck2 text union-find wl-pprint + test-framework-quickcheck2 text union-find ]; jailbreak = true; homepage = "http://elm-lang.org"; - description = "Values to help with elm-package, elm-make, and elm-lang.org"; + description = "Values to help with elm-package, elm-make, and elm-lang.org."; license = stdenv.lib.licenses.bsd3; } diff --git a/pkgs/development/compilers/elm/packages/elm-make.nix b/pkgs/development/compilers/elm/packages/elm-make.nix index 1fe4acc9e3b..bed7698cfe4 100644 --- a/pkgs/development/compilers/elm/packages/elm-make.nix +++ b/pkgs/development/compilers/elm/packages/elm-make.nix @@ -1,22 +1,23 @@ { 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, raw-strings-qq +, optparse-applicative, raw-strings-qq, stdenv, text, time }: mkDerivation { pname = "elm-make"; - version = "0.17"; + version = "0.17.1"; src = fetchgit { url = "https://github.com/elm-lang/elm-make"; - sha256 = "0ywi6iq2a3rb8a68ryqpq9y22536aa9k71wy7fcmrd5nwkmpwd2r"; - rev = "5f7b74567c43eff341048c7caceb247b51cdb8bb"; + sha256 = "0k9w5gl48lhhr3n2iflf0vkb3w6al0xcbglgiw4fq1ssz3aa7ijw"; + rev = "0a0a1f52ab04e2d68d60a5798722e1de30b47335"; }; 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 raw-strings-qq + elm-package filepath mtl optparse-applicative raw-strings-qq text + time ]; 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 7df5516b27a..ef2d4e9c8e7 100644 --- a/pkgs/development/compilers/elm/packages/elm-package.nix +++ b/pkgs/development/compilers/elm/packages/elm-package.nix @@ -1,29 +1,32 @@ { mkDerivation, aeson, aeson-pretty, ansi-wl-pprint, base, binary -, bytestring, containers, directory, elm-compiler, fetchgit -, filepath, HTTP, http-client, http-client-tls, http-types, mtl -, network, optparse-applicative, pretty, stdenv, text, time -, unordered-containers, vector, zip-archive +, bytestring, containers, directory, edit-distance, elm-compiler +, fetchgit, filepath, HTTP, http-client, http-client-tls +, http-types, mtl, network, optparse-applicative, parallel-io +, pretty, stdenv, text, time, unordered-containers, vector +, zip-archive }: mkDerivation { pname = "elm-package"; - version = "0.17"; + version = "0.17.1"; src = fetchgit { url = "https://github.com/elm-lang/elm-package"; - sha256 = "0z86560a2f7w3ywqvzqghgz100z0yn8zsiixkw4lp5168krp4axg"; - rev = "fc0924210fe5a7c0af543769b1353dbb2ddf2f0c"; + sha256 = "0dnn871py0pvzxsjjggy5ww2zj9g71c2dcnp38rcr4nbj8yxik85"; + rev = "9011ccdbced1d06aa60de0e3096e609ef44d26dd"; }; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson aeson-pretty base binary bytestring containers directory - elm-compiler filepath HTTP http-client http-client-tls http-types - mtl network text time unordered-containers vector zip-archive + aeson aeson-pretty ansi-wl-pprint base binary bytestring containers + directory edit-distance elm-compiler filepath HTTP http-client + http-client-tls http-types mtl network parallel-io text time + unordered-containers vector zip-archive ]; executableHaskellDepends = [ aeson aeson-pretty ansi-wl-pprint base binary bytestring containers - directory elm-compiler filepath HTTP http-client http-client-tls - http-types mtl network optparse-applicative pretty text time - unordered-containers vector zip-archive + directory edit-distance elm-compiler filepath HTTP http-client + http-client-tls http-types mtl network optparse-applicative + parallel-io pretty text time unordered-containers vector + zip-archive ]; jailbreak = true; homepage = "http://github.com/elm-lang/elm-package"; diff --git a/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix b/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix index a84f9e48ba0..79043012590 100644 --- a/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix +++ b/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix @@ -1,22 +1,22 @@ { "elm-lang/virtual-dom" = { - version = "1.0.0"; - sha256 = "0pa8k04g9yfixahsb30j0rbhfh6hwdh7xmm2fvk0hkidw7b4xg57"; + version = "1.1.0"; + sha256 = "16g66cvvh85ddciq0ymaqfyq2bcz11pxn0g0dc1wx7bmlqx7q1jz"; }; "evancz/elm-markdown" = { version = "3.0.0"; sha256 = "0r3hcim4mpn46ahv1q6sjp6i2viyp7jik6i71xgwmvfb9drns2p6"; }; "elm-lang/html" = { - version = "1.0.0"; - sha256 = "16cr01yxkpkmgbgclp2p80nd62a6fjw3qipzjsgksrhwv9vv4gm4"; + version = "1.1.0"; + sha256 = "1v7pwxxd81qrfywb4rr199p2i9z77vjkbwjwm5gy1nxdpi8mb50y"; }; "elm-lang/svg" = { - version = "1.0.0"; - sha256 = "0c29y6c58x2sq1bl29z1hr5gi2rlza8clk7ssgzmsf4xbvcczbjx"; + version = "1.1.1"; + sha256 = "0xzc0fq2kg797km0nq2f52w6xdffrl9l0y5zbkpa72w163zpxkkn"; }; "elm-lang/core" = { - version = "4.0.0"; - sha256 = "04qgzgv90qyhjk55yw4szy50h2dqdlm0a2padbgn02yf4bb1b4nw"; + version = "4.0.2"; + sha256 = "1qjhfr3gd1qmfvna7iddspmk26v2nmgmgw9m6yyz10ygy3i9mla6"; }; } diff --git a/pkgs/development/compilers/elm/packages/elm-reactor.nix b/pkgs/development/compilers/elm/packages/elm-reactor.nix index 55b6b9ae416..cf6d33a5acb 100644 --- a/pkgs/development/compilers/elm/packages/elm-reactor.nix +++ b/pkgs/development/compilers/elm/packages/elm-reactor.nix @@ -1,22 +1,25 @@ -{ 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, elm-package, file-embed +{ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring +, cmdargs, containers, directory, elm-compiler, elm-package +, fetchgit, file-embed, filepath, fsnotify, mtl, process, snap-core +, snap-server, stdenv, template-haskell, text, time, transformers +, unordered-containers, utf8-string, websockets, websockets-snap }: mkDerivation { pname = "elm-reactor"; - version = "0.17"; + version = "0.17.1"; src = fetchgit { url = "https://github.com/elm-lang/elm-reactor"; - sha256 = "03lb6fcc5d02gflarxc54l71hbwdb73v423ffjz5hvlha6ixglv7"; - rev = "4781ad2fbb6cbcde0d659dec293bbed9c847ba71"; + sha256 = "14kkqskvhkfznpl8cmjlvv3rp6ciqmdbxrmq6f20p3aznvkrdvf8"; + rev = "7522d7ef379c5a4ffbba11b1be09ed04add08a63"; }; 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 elm-package file-embed + aeson base blaze-html blaze-markup bytestring cmdargs containers + directory elm-compiler elm-package file-embed filepath fsnotify mtl + process snap-core snap-server template-haskell text time + transformers unordered-containers utf8-string websockets + websockets-snap ]; 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 3b17722b91d..e08c295f294 100644 --- a/pkgs/development/compilers/elm/packages/elm-repl.nix +++ b/pkgs/development/compilers/elm/packages/elm-repl.nix @@ -2,20 +2,21 @@ , containers, directory, elm-compiler, elm-package, fetchgit , filepath, haskeline, HUnit, mtl, parsec, QuickCheck, stdenv , test-framework, test-framework-hunit, test-framework-quickcheck2 +, text }: mkDerivation { pname = "elm-repl"; - version = "0.17"; + version = "0.17.1"; src = fetchgit { url = "https://github.com/elm-lang/elm-repl"; - sha256 = "0bpmkm7q3a0h4hwlbwcnzaqgf6n5p1qw65z8kw84f52s5bndc0wc"; - rev = "95b4555cff6b6e2a55a4ea3dab00bfb39dfebf0d"; + sha256 = "0nh2yfr0bi4rg1kak1gjaczpq56y1nii05b5y7hn6n4w651jkm28"; + rev = "413ac0d4ee43c8542afd3041bbb7b8c903cd3d30"; }; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base binary bytestring bytestring-trie cmdargs containers directory - elm-compiler elm-package filepath haskeline mtl parsec + elm-compiler elm-package filepath haskeline mtl parsec text ]; testHaskellDepends = [ base bytestring bytestring-trie cmdargs directory elm-compiler @@ -24,6 +25,6 @@ mkDerivation { ]; jailbreak = true; homepage = "https://github.com/elm-lang/elm-repl"; - description = "A REPL for Elm"; + description = "a REPL for Elm"; license = stdenv.lib.licenses.bsd3; } diff --git a/pkgs/development/compilers/elm/packages/release.nix b/pkgs/development/compilers/elm/packages/release.nix index 531da88452f..6817d8e297f 100644 --- a/pkgs/development/compilers/elm/packages/release.nix +++ b/pkgs/development/compilers/elm/packages/release.nix @@ -2,7 +2,7 @@ # Please, do not modify it by hand! { callPackage }: { - version = "0.17"; + version = "0.17.1"; packages = { elm-compiler = callPackage ./elm-compiler.nix { }; elm-package = callPackage ./elm-package.nix { }; diff --git a/pkgs/development/compilers/elm/update-elm.rb b/pkgs/development/compilers/elm/update-elm.rb index e27279604ae..a1f76945cd2 100755 --- a/pkgs/development/compilers/elm/update-elm.rb +++ b/pkgs/development/compilers/elm/update-elm.rb @@ -1,19 +1,19 @@ #!/usr/bin/env ruby # Take those from https://github.com/elm-lang/elm-platform/blob/master/installers/BuildFromSource.hs -$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" +$elm_version = "0.17.1" +$elm_packages = { "elm-compiler" => "0.17.1", + "elm-package" => "0.17.1", + "elm-make" => "0.17.1", + "elm-reactor" => "0.17.1", + "elm-repl" => "0.17.1" } for pkg, ver in $elm_packages - system "cabal2nix https://github.com/elm-lang/#{pkg} --revision refs/tags/#{ver} --jailbreak > #{pkg}.nix" + system "cabal2nix https://github.com/elm-lang/#{pkg} --revision refs/tags/#{ver} --jailbreak > packages/#{pkg}.nix" end -File.open("release.nix", 'w') do |file| +File.open("packages/release.nix", 'w') do |file| file.puts "# This file is auto-generated by ./update-elm.rb." file.puts "# Please, do not modify it by hand!" file.puts "{ callPackage }:" From 0362eaf3ecda998a547eec367549e1386a56d1a5 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Sat, 16 Jul 2016 00:36:28 +0200 Subject: [PATCH 113/123] elm-format: 0.3.1 -> 0.4.0 --- .../compilers/elm/packages/elm-format.nix | 21 +++++++++---------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/pkgs/development/compilers/elm/packages/elm-format.nix b/pkgs/development/compilers/elm/packages/elm-format.nix index 12550e46a97..e759369bbcd 100644 --- a/pkgs/development/compilers/elm/packages/elm-format.nix +++ b/pkgs/development/compilers/elm/packages/elm-format.nix @@ -2,17 +2,16 @@ , bytestring, containers, directory, edit-distance, fetchgit , filemanip, filepath, HUnit, indents, mtl, optparse-applicative , parsec, pretty, process, QuickCheck, quickcheck-io -, regex-applicative, split, stdenv, test-framework -, test-framework-hunit, test-framework-quickcheck2, text -, union-find, wl-pprint +, regex-applicative, split, stdenv, tasty, tasty-golden +, tasty-hunit, tasty-quickcheck, text, union-find, wl-pprint }: mkDerivation { pname = "elm-format"; - version = "0.3.1"; + version = "0.4.0"; src = fetchgit { url = "http://github.com/avh4/elm-format"; - sha256 = "04kl50kzvjf4i140dlhs6f9fd2wmk6cnvyfamx2xh8vbwbnwrkj4"; - rev = "0637f3772de2297d12ea35f5b66961e1d827552c"; + sha256 = "199xh2w5cwcf79a8fv6j8dpk9h8a4cygrf8cfr9p7bvp2wvczibm"; + rev = "d9cbe65c5f01d21b5a02c2f963aa4c9d3f0539d0"; }; isLibrary = false; isExecutable = true; @@ -23,11 +22,11 @@ mkDerivation { text ]; testHaskellDepends = [ - aeson ansi-terminal base binary bytestring containers directory - edit-distance filemanip filepath HUnit indents mtl parsec pretty - process QuickCheck quickcheck-io regex-applicative split - test-framework test-framework-hunit test-framework-quickcheck2 text - union-find wl-pprint + aeson ansi-terminal ansi-wl-pprint base binary bytestring + containers directory edit-distance filemanip filepath HUnit indents + mtl optparse-applicative parsec pretty process QuickCheck + quickcheck-io regex-applicative split tasty tasty-golden + tasty-hunit tasty-quickcheck text union-find wl-pprint ]; jailbreak = true; homepage = "http://elm-lang.org"; From 5b6e3a3ed15289f45fd72b8f5d2c12c1a0a66433 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Fri, 15 Jul 2016 21:29:15 +0200 Subject: [PATCH 114/123] pencil: mark as broken Currently pencil won't start, due to incompatible firefox version: $ pencil Error: Platform version '47.0.1' is not compatible with minVersion >= 36.0 See https://github.com/prikhi/pencil/issues/840. --- pkgs/applications/graphics/pencil/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/graphics/pencil/default.nix b/pkgs/applications/graphics/pencil/default.nix index 80774fba5ff..7d9b77e9661 100644 --- a/pkgs/applications/graphics/pencil/default.nix +++ b/pkgs/applications/graphics/pencil/default.nix @@ -32,5 +32,8 @@ stdenv.mkDerivation rec { license = licenses.gpl2; # Commercial license is also available maintainers = with maintainers; [ bjornfor prikhi ]; platforms = platforms.linux; + # See https://github.com/prikhi/pencil/issues/840 + # ("Error: Platform version '47.0' is not compatible with minVersion >= 36.0 maxVersion <= 46.*") + broken = true; }; } From 4ea1b3824a8e32ab9d01165900e56431e4f8a8c1 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Sat, 16 Jul 2016 00:39:55 +0200 Subject: [PATCH 115/123] elm-format: disable tests (one failing), reported upstream --- pkgs/development/compilers/elm/packages/elm-format.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/development/compilers/elm/packages/elm-format.nix b/pkgs/development/compilers/elm/packages/elm-format.nix index e759369bbcd..4d30c697abd 100644 --- a/pkgs/development/compilers/elm/packages/elm-format.nix +++ b/pkgs/development/compilers/elm/packages/elm-format.nix @@ -32,4 +32,14 @@ mkDerivation { homepage = "http://elm-lang.org"; description = "A source code formatter for Elm"; license = stdenv.lib.licenses.bsd3; + + # XXX: I've manually disabled tests, only the following test is failing + # ... + # ElmFormat.Cli + # format a single file in place: OK + # usage instructions: FAIL + # ... + # 1 out of 266 tests failed (0.50s) + # Test suite elm-format-tests: FAIL + doCheck = false; } From 49ea72c3f3c72331204e1404c3414b0c915574d3 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Fri, 15 Jul 2016 22:01:58 -0400 Subject: [PATCH 116/123] pythonPackages.cffi: fix on darwin This isn't conditional because it works on other platforms too --- pkgs/top-level/python-packages.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 21700fe82d1..04dc7a26ac0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4373,6 +4373,12 @@ in modules // { propagatedBuildInputs = with self; [ pkgs.libffi pycparser ]; buildInputs = with self; [ pytest ]; + patchPhase = '' + substituteInPlace testing/cffi0/test_ownlib.py --replace "gcc" "cc" + ''; + + NIX_CFLAGS_COMPILE="-Wno-shift-negative-value"; + checkPhase = '' py.test ''; From bc70da1ce0d7afc7af097049e9e520c0596f0a9c Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sat, 16 Jul 2016 00:54:36 -0500 Subject: [PATCH 117/123] nixpkgs: upgrade plex packages - plex: 0.9.16.4.1911 -> 1.0.0.2261 - plexpass: 0.9.16.5.1966 -> 1.0.1.2396 Signed-off-by: Austin Seipp --- pkgs/servers/plex/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/servers/plex/default.nix b/pkgs/servers/plex/default.nix index 50fc85d48b3..f31971bf4c1 100644 --- a/pkgs/servers/plex/default.nix +++ b/pkgs/servers/plex/default.nix @@ -5,13 +5,13 @@ let plexpkg = if enablePlexPass then { - version = "0.9.16.5.1966"; - vsnHash = "81a3bf0"; - sha256 = "1sgdd3r067j9ysfp90wjx6zi01s00wzgzs27l8xdlsbnvjr8zmf8"; + version = "1.0.1.2396"; + vsnHash = "c094d0d"; + sha256 = "0bhbpaj88989zn1q590mkcqshcpir87yiac9x1dl0afzpxj09lcz"; } else { - version = "0.9.16.4.1911"; - vsnHash = "ee6e505"; - sha256 = "0lq0lcynmc09d0whynb0x2zgd39dp7z7k86ndgm2clay3zbzqpfd"; + version = "1.0.0.2261"; + vsnHash = "a17e99e"; + sha256 = "14li33ni6aaa1qwvc02a066k52s1qwhpv55prvlmq3m5jm3iv0lr"; }; in stdenv.mkDerivation rec { From 3a8067e6ded9cb0a1a7931141821ed5ee6502e64 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sat, 16 Jul 2016 01:19:55 -0500 Subject: [PATCH 118/123] nixpkgs: bittorrentSync 2.3.7 -> 2.3.8 Signed-off-by: Austin Seipp --- pkgs/applications/networking/bittorrentsync/2.0.x.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/bittorrentsync/2.0.x.nix b/pkgs/applications/networking/bittorrentsync/2.0.x.nix index f8ba6a5c5f6..d2db3eec26e 100644 --- a/pkgs/applications/networking/bittorrentsync/2.0.x.nix +++ b/pkgs/applications/networking/bittorrentsync/2.0.x.nix @@ -1,9 +1,9 @@ { stdenv, fetchurl, ... } @ args: import ./generic.nix (args // { - version = "2.3.7"; + version = "2.3.8"; sha256s = { - "x86_64-linux" = "1hnw6bv60xrnc733gm1ilywc0y93k2g6bmwgnww9qk7ivbvi6pd1"; - "i686-linux" = "0hj8nbq6mava15m1hxaqq371fqk0whdx5iqsbnppyci0jjnr4qv1"; + "x86_64-linux" = "02n5s561cz3mprg682mrbmh3qai42dh64jgi05rqy9s6wgbn66ly"; + "i686-linux" = "118qrnxc7gvm30rsz0xfx6dlxmrr0dk5ajrvszhy06ww7xvqhzji"; }; }) From c606b9876fbcbfa2aa8360a5a2d808c80d3a2759 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 14 Jul 2016 15:42:54 +0200 Subject: [PATCH 119/123] grsecurity module: enforce size overflows by default It is better to make this conditional on whether the configuration contains a known size overflow that could prevent the system from booting. --- nixos/modules/security/grsecurity.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/nixos/modules/security/grsecurity.nix b/nixos/modules/security/grsecurity.nix index 9d0249820d5..ee5881d2872 100644 --- a/nixos/modules/security/grsecurity.nix +++ b/nixos/modules/security/grsecurity.nix @@ -48,10 +48,6 @@ in (isYES "GRKERNSEC_SYSCTL_DISTRO") ]; - # Crashing on an overflow in kernel land is user unfriendly and may prevent - # the system from booting, which is too severe for our use case. - boot.kernelParams = [ "pax_size_overflow_report_only" ]; - # Install PaX related utillities into the system profile. Eventually, we # also want to include gradm here. environment.systemPackages = with pkgs; [ paxctl pax-utils ]; From 94824303be3093fa105b6e50ba5497cbc7318f6e Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 14 Jul 2016 16:00:17 +0200 Subject: [PATCH 120/123] grsecurity module: smarter container support Only set tunables required for container support if there are any containers. --- nixos/modules/security/grsecurity.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nixos/modules/security/grsecurity.nix b/nixos/modules/security/grsecurity.nix index ee5881d2872..2b00c8954a8 100644 --- a/nixos/modules/security/grsecurity.nix +++ b/nixos/modules/security/grsecurity.nix @@ -13,6 +13,10 @@ let || elem fs.mountPoint [ "/" "/nix" "/nix/store" "/var" "/var/log" "/var/lib" "/etc" ]) && fs.fsType == "zfs") (attrValues config.fileSystems) != []; + + # Ascertain whether NixOS container support is required + containerSupportRequired = + config.boot.enableContainers && config.containers != {}; in { @@ -101,7 +105,7 @@ in "kernel.grsecurity.chroot_deny_chroot" = mkForce 0; "kernel.grsecurity.chroot_deny_mount" = mkForce 0; "kernel.grsecurity.chroot_deny_pivot" = mkForce 0; - } // optionalAttrs config.boot.enableContainers { + } // optionalAttrs containerSupportRequired { # chroot(2) restrictions that conflict with NixOS lightweight containers "kernel.grsecurity.chroot_deny_chmod" = mkForce 0; "kernel.grsecurity.chroot_deny_mount" = mkForce 0; From cef7150bc761d8ccd012f5cc6fb20e439293f3f0 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 14 Jul 2016 17:43:43 +0200 Subject: [PATCH 121/123] grsecurity module: grsecurity is not capitalized mid-sentence --- nixos/modules/security/grsecurity.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/security/grsecurity.nix b/nixos/modules/security/grsecurity.nix index 2b00c8954a8..348f3cb5e95 100644 --- a/nixos/modules/security/grsecurity.nix +++ b/nixos/modules/security/grsecurity.nix @@ -22,7 +22,7 @@ in { options.security.grsecurity = { - enable = mkEnableOption "Grsecurity/PaX"; + enable = mkEnableOption "grsecurity/PaX"; lockTunables = mkOption { type = types.bool; @@ -59,7 +59,7 @@ in # Install rules for the grsec device node services.udev.packages = [ pkgs.gradm ]; - # This service unit is responsible for locking the Grsecurity tunables. The + # This service unit is responsible for locking the grsecurity tunables. The # unit is always defined, but only activated on bootup if lockTunables is # toggled. When lockTunables is toggled, failure to activate the unit will # enter emergency mode. The intent is to make it difficult to silently From 59c9a88a6b690a5e577c71b95494e99cfe6fa816 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 14 Jul 2016 17:44:05 +0200 Subject: [PATCH 122/123] grsecurity module: tweak lockTunables option description --- nixos/modules/security/grsecurity.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/modules/security/grsecurity.nix b/nixos/modules/security/grsecurity.nix index 348f3cb5e95..e825679c343 100644 --- a/nixos/modules/security/grsecurity.nix +++ b/nixos/modules/security/grsecurity.nix @@ -31,9 +31,9 @@ in description = '' Whether to automatically lock grsecurity tunables (). Disable - this to allow configuration of grsecurity features while the system is - running. The lock can be manually engaged by activating the - grsec-lock service unit. + this to allow runtime configuration of grsecurity features. Activate + the grsec-lock service unit to prevent further + configuration until the next reboot. ''; }; From 61a3610853428afb03d89d159569229a557a1cb6 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sat, 16 Jul 2016 11:34:32 +0200 Subject: [PATCH 123/123] tptp: 6.3.0 -> 6.4.0 --- pkgs/applications/science/logic/tptp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/logic/tptp/default.nix b/pkgs/applications/science/logic/tptp/default.nix index e9a89bc0dc6..32906b88d59 100644 --- a/pkgs/applications/science/logic/tptp/default.nix +++ b/pkgs/applications/science/logic/tptp/default.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { name = "TPTP-${version}"; - version = "6.3.0"; + version = "6.4.0"; src = fetchurl { url = [ "http://www.cs.miami.edu/~tptp/TPTP/Distribution/TPTP-v${version}.tgz" "http://www.cs.miami.edu/~tptp/TPTP/Archive/TPTP-v${version}/TPTP-v${version}.tgz" ]; - sha256 = "0xy4cqniyx9fv8r9mc5q5b7xl163pkr9hcmpq6gkls2a0pvg07w9"; + sha256 = "1i5hi8grfl5zyh8py63zn39rg019bd90h2l312iswbgai6nyfdw0"; }; buildInputs = [ tcsh yap perl patchelf ];